1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-13 20:24:08 +02:00

- some bugfixes

git-svn-id: file:///svn/phpbb/trunk@5255 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2005-10-04 21:39:47 +00:00
parent 5449c591a9
commit 1981196e99
8 changed files with 84 additions and 69 deletions

View File

@@ -16,7 +16,7 @@ class acm
{
var $vars = array();
var $var_expires = array();
var $is_modified = FALSE;
var $is_modified = false;
var $sql_rowset = array();
@@ -65,7 +65,7 @@ class acm
fclose($fp);
}
$this->is_modified = FALSE;
$this->is_modified = false;
}
function tidy()
@@ -80,7 +80,7 @@ class acm
continue;
}
$expired = TRUE;
$expired = true;
include($this->cache_dir . $entry);
if ($expired)
{