diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-02-21 00:40:00 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-02-21 00:40:00 +0100 |
commit | 41a439bf75bdd277e153d44788b732cf2e8c7ee3 (patch) | |
tree | 75f80d17c004e215f72f5825f60a140e163a671a /system/database | |
parent | 2da66edce7c249c0305153a65c4292311f49a546 (diff) |
Minor formatting fixes
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/drivers/interbase/interbase_result.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/database/drivers/interbase/interbase_result.php b/system/database/drivers/interbase/interbase_result.php index 9caf1ce91..01f0e52b2 100644 --- a/system/database/drivers/interbase/interbase_result.php +++ b/system/database/drivers/interbase/interbase_result.php @@ -164,7 +164,7 @@ class CI_DB_interbase_result extends CI_DB_result { */ protected function _fetch_assoc() { - if(($row = @ibase_fetch_assoc($this->result_id, IBASE_FETCH_BLOBS)) !== FALSE) + if (($row = @ibase_fetch_assoc($this->result_id, IBASE_FETCH_BLOBS)) !== FALSE) { //Increment row count $this->num_rows++; @@ -184,7 +184,7 @@ class CI_DB_interbase_result extends CI_DB_result { */ protected function _fetch_object() { - if(($row = @ibase_fetch_object($this->result_id, IBASE_FETCH_BLOBS)) !== FALSE) + if (($row = @ibase_fetch_object($this->result_id, IBASE_FETCH_BLOBS)) !== FALSE) { //Increment row count $this->num_rows++; @@ -209,7 +209,7 @@ class CI_DB_interbase_result extends CI_DB_result { // Convert result array to object so that // We don't have to get the result again - if(count($this->result_array) > 0) + if (count($this->result_array) > 0) { $i = 0; @@ -261,7 +261,7 @@ class CI_DB_interbase_result extends CI_DB_result { // Since the object and array are really similar, just case // the result object to an array if need be - if(count($this->result_object) > 0) + if (count($this->result_object) > 0) { foreach($this->result_object as $obj) { |