summaryrefslogtreecommitdiffstats
path: root/system/database
diff options
context:
space:
mode:
Diffstat (limited to 'system/database')
-rw-r--r--system/database/DB_driver.php2
-rw-r--r--system/database/DB_result.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index ab8a6a8e2..61f0d307f 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -234,9 +234,9 @@ class CI_DB_driver {
{
if ($this->_cache_init())
{
+ $this->load_rdriver();
if (FALSE !== ($cache = $this->CACHE->read($sql)))
{
- $this->load_rdriver();
return $cache;
}
}
diff --git a/system/database/DB_result.php b/system/database/DB_result.php
index 44f166d21..7553c167f 100644
--- a/system/database/DB_result.php
+++ b/system/database/DB_result.php
@@ -63,7 +63,7 @@ class CI_DB_result {
return $this->result_object;
}
- if ($this->numerous == 0)
+ if ($this->num_rows == 0)
{
return array();
}