diff options
author | admin <devnull@localhost> | 2006-10-03 08:12:52 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-03 08:12:52 +0200 |
commit | 07ad666409b60610a1e5b07368506f9f0ca45b22 (patch) | |
tree | c12fb70383b464e5a411c6ad8df181316fd9b0d2 /system/database | |
parent | f6edc53e00677d5ec3859ab7fd50bb2c84fc2e6a (diff) |
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_result.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_result.php b/system/database/DB_result.php index 32c51e07b..3bd43bac6 100644 --- a/system/database/DB_result.php +++ b/system/database/DB_result.php @@ -70,7 +70,7 @@ class CI_DB_result { if (count($this->result_object) == 0) { - return FALSE; + return array(); } return $this->result_object; @@ -98,7 +98,7 @@ class CI_DB_result { if (count($this->result_array) == 0) { - return FALSE; + return array(); } return $this->result_array; |