From 43cbdaaf9dc073b7e6bcf6416650c3249ea37d5d Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 3 Apr 2008 21:54:15 +0000 Subject: syntax error: extraneous closing parenthesis --- system/database/DB_result.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/database/DB_result.php b/system/database/DB_result.php index 6461431e2..c2eeefb94 100644 --- a/system/database/DB_result.php +++ b/system/database/DB_result.php @@ -134,7 +134,7 @@ class CI_DB_result { } // array_key_exists() instead of isset() to allow for MySQL NULL values - if (array_key_exists($n, $this->row_data))) + if (array_key_exists($n, $this->row_data)) { return $this->row_data[$n]; } -- cgit v1.2.3-24-g4f1b