summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-02-20 21:42:14 +0100
committerTimothy Warren <tim@timshomepage.net>2012-02-20 21:42:14 +0100
commit934e853d9a3a491911b72f40cb371edfaddb9c94 (patch)
tree7a19a4f4376f7d170512396f007cc49d6bf416a4 /system/database/drivers
parent07b660b56dcf608b64fc1811c602c4072c276e70 (diff)
Revert "Fix previous commit"
Diffstat (limited to 'system/database/drivers')
-rw-r--r--system/database/drivers/interbase/interbase_result.php6
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;
}