summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/postgre/postgre_result.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2007-12-20 15:38:56 +0100
committerDerek Allard <derek.allard@ellislab.com>2007-12-20 15:38:56 +0100
commitaa7f769c1e6f46171f2fbc15f43428207c02abcb (patch)
treee5c5123f275d12a8573d61c1a8c1e8912c5bc117 /system/database/drivers/postgre/postgre_result.php
parent026585710c5ad4c5a8e5544d177b6a870f56123e (diff)
fixed typo: $field_names[] vs $Ffield_names[]
Diffstat (limited to 'system/database/drivers/postgre/postgre_result.php')
-rw-r--r--system/database/drivers/postgre/postgre_result.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/postgre/postgre_result.php b/system/database/drivers/postgre/postgre_result.php
index 9938d4069..9fd2a7e93 100644
--- a/system/database/drivers/postgre/postgre_result.php
+++ b/system/database/drivers/postgre/postgre_result.php
@@ -65,7 +65,7 @@ class CI_DB_postgre_result extends CI_DB_result {
$field_names = array();
for ($i = 0; $i < $this->num_fields(); $i++)
{
- $Ffield_names[] = pg_field_name($this->result_id, $i);
+ $field_names[] = pg_field_name($this->result_id, $i);
}
return $field_names;