More style fixes, replaced _protect_identifiers with protect_identifiers in db_forge
diff --git a/system/database/drivers/interbase/interbase_result.php b/system/database/drivers/interbase/interbase_result.php
index 01f0e52..be9cb65 100644
--- a/system/database/drivers/interbase/interbase_result.php
+++ b/system/database/drivers/interbase/interbase_result.php
@@ -213,11 +213,11 @@
{
$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 @@
// 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;
}