diff options
author | admin <devnull@localhost> | 2006-09-27 03:54:14 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-27 03:54:14 +0200 |
commit | 402d1d511d79b4e6d760dc3c88b4fe80a53a8a56 (patch) | |
tree | 1df9e5cca5513a354b32e09e6c17f3a32e8e21a9 /system | |
parent | 5abd04902b11472cd8243280f0c08687325c5e90 (diff) |
Diffstat (limited to 'system')
-rw-r--r-- | system/database/DB_active_rec.php | 2 | ||||
-rw-r--r-- | system/database/DB_cache.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php index c038185bc..eb9f14a92 100644 --- a/system/database/DB_active_rec.php +++ b/system/database/DB_active_rec.php @@ -135,7 +135,7 @@ class CI_DB_active_record extends CI_DB_driver { } } - $this->ar_join[] = $type.'JOIN '.$table.' ON '.$cond; + $this->ar_join[] = $type.'JOIN '.$this->dbprefix.$table.' ON '.$cond; return $this; } diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php index ca3bba2eb..086958d3d 100644 --- a/system/database/DB_cache.php +++ b/system/database/DB_cache.php @@ -27,7 +27,7 @@ class CI_DB_cache { /** - * Generate CVS from a query result object + * Cache it! * * @access public * @return string |