diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-02-20 21:42:14 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-02-20 21:42:14 +0100 |
commit | 934e853d9a3a491911b72f40cb371edfaddb9c94 (patch) | |
tree | 7a19a4f4376f7d170512396f007cc49d6bf416a4 /system/database/drivers/interbase/interbase_result.php | |
parent | 07b660b56dcf608b64fc1811c602c4072c276e70 (diff) |
Revert "Fix previous commit"
This reverts commit 53d109dbd831506c4b9ca77f10bc1b2dba9c28d5.
Diffstat (limited to 'system/database/drivers/interbase/interbase_result.php')
-rw-r--r-- | system/database/drivers/interbase/interbase_result.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/system/database/drivers/interbase/interbase_result.php b/system/database/drivers/interbase/interbase_result.php index de4a10b62..c7b40d2ea 100644 --- a/system/database/drivers/interbase/interbase_result.php +++ b/system/database/drivers/interbase/interbase_result.php @@ -236,11 +236,7 @@ class CI_DB_interbase_result extends CI_DB_result { // the result object to an array if need be if(count($this->result_object) > 0) { - foreach($this->result_object as $obj) - { - $this->result_array[] = (array)$obj; - } - + $this->result_array = (array)$this->result_object; return $this->result_array; } |