summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/interbase/interbase_result.php
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-02-21 00:58:24 +0100
committerTimothy Warren <tim@timshomepage.net>2012-02-21 00:58:24 +0100
commitdd044b317fc2db52f3812792a256497a2f0e94fb (patch)
treec4c3b0b92cf06dc4c16123ba58429d22175f5c6e /system/database/drivers/interbase/interbase_result.php
parent41a439bf75bdd277e153d44788b732cf2e8c7ee3 (diff)
More style fixes, replaced _protect_identifiers with protect_identifiers in db_forge
Diffstat (limited to 'system/database/drivers/interbase/interbase_result.php')
-rw-r--r--system/database/drivers/interbase/interbase_result.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/database/drivers/interbase/interbase_result.php b/system/database/drivers/interbase/interbase_result.php
index 01f0e52b2..be9cb6547 100644
--- a/system/database/drivers/interbase/interbase_result.php
+++ b/system/database/drivers/interbase/interbase_result.php
@@ -213,11 +213,11 @@ class CI_DB_interbase_result extends CI_DB_result {
{
$i = 0;
- foreach($this->result_array as $array)
+ foreach ($this->result_array as $array)
{
$this->result_object[$i] = new StdClass();
- foreach($array as $key => $val)
+ foreach ($array as $key => $val)
{
$this->result_object[$i]->{$key} = $val;
}
@@ -263,7 +263,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)
+ foreach ($this->result_object as $obj)
{
$this->result_array[] = (array)$obj;
}