diff options
author | Eric Roberts <eric@cryode.com> | 2013-01-17 04:32:51 +0100 |
---|---|---|
committer | Eric Roberts <eric@cryode.com> | 2013-01-17 04:32:51 +0100 |
commit | bd6faca03fc7934a0ad1cff8584bfb49d2a43d49 (patch) | |
tree | 51e68684755b42a32e5a709479835be0fb891f9c /system/database/DB_result.php | |
parent | 7a4fb63a43392fc1cf5a5ead32ad81451c53dc67 (diff) | |
parent | b26bb6ef76eb2f8327dafe085ae6bca14c22160b (diff) |
Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into feature/output-cache-improvements
Diffstat (limited to 'system/database/DB_result.php')
-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 dfd8081fd..a044fd5dc 100644 --- a/system/database/DB_result.php +++ b/system/database/DB_result.php @@ -354,7 +354,7 @@ class CI_DB_result { return; } - if ($key !== '' && ! is_null($value)) + if ($key !== '' && $value !== NULL) { $this->row_data[$key] = $value; } |