summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/database/DB_result.php2
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];
}