diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-04-03 23:54:15 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-04-03 23:54:15 +0200 |
commit | 43cbdaaf9dc073b7e6bcf6416650c3249ea37d5d (patch) | |
tree | 78df9b2dd9513395520202c508a2cac37a90a430 /system/database | |
parent | e97b13635f8985ac88add9659ae6a78e67006b9b (diff) |
syntax error: extraneous closing parenthesis
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_result.php | 2 |
1 files changed, 1 insertions, 1 deletions
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];
}
|