Index: branches/5.2.x/core/kernel/nparser/template_cache.php =================================================================== diff -u -N -r14628 -r15012 --- branches/5.2.x/core/kernel/nparser/template_cache.php (.../template_cache.php) (revision 14628) +++ branches/5.2.x/core/kernel/nparser/template_cache.php (.../template_cache.php) (revision 15012) @@ -1,6 +1,6 @@ _compileToDatabase) { $sql = 'SELECT * - FROM ' . TABLE_PREFIX . 'Cache + FROM ' . TABLE_PREFIX . 'SystemCache WHERE VarName = "' . $fname . '"'; $cached = $this->Conn->GetRow($sql); @@ -214,7 +214,7 @@ 'Cached' => adodb_mktime(), ); - $this->Conn->doInsert($fields_hash, TABLE_PREFIX . 'Cache', 'REPLACE'); + $this->Conn->doInsert($fields_hash, TABLE_PREFIX . 'SystemCache', 'REPLACE'); return ; } @@ -246,7 +246,7 @@ if ($this->_compileToDatabase) { $sql = 'SELECT * - FROM ' . TABLE_PREFIX . 'Cache + FROM ' . TABLE_PREFIX . 'SystemCache WHERE VarName = "' . $pre_parsed['fname'] . '"'; $cached = $this->Conn->GetRow($sql);