1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 23:55:26 +02:00
git-svn-id: file:///svn/phpbb/trunk@7853 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-07-09 18:27:57 +00:00
parent 61703b1ed2
commit ec4eabe4ce
2 changed files with 3 additions and 0 deletions

View File

@ -194,6 +194,7 @@ p a {
<li>[Fix] Hide autologin box when autologin is disabled (Bug #13093)</li>
<li>[Fix] Account for the forum id not being part of the request uri in prosilver (Bug #13121)</li>
<li>[Fix] Properly alter PostgreSQL tables</li>
<li>[Fix] Properly cache template files that were stored in the database (Bug #12675)</li>
</ul>

View File

@ -34,6 +34,7 @@ class template
var $root = '';
var $cachepath = '';
var $files = array();
var $filename = array();
// this will hash handle names to the compiled/uncompiled code for that handle.
var $compiled_code = array();
@ -246,6 +247,7 @@ class template
$compile->_tpl_load_file($row['template_filename']);
unset($this->compiled_code[$row['template_filename']]);
unset($this->files[$row['template_filename']]);
unset($this->filename[$row['template_filename']]);
}
}