mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
- some fixes/changes
git-svn-id: file:///svn/phpbb/trunk@5035 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
|
||||
class acm
|
||||
{
|
||||
var $vars = '';
|
||||
var $vars = array();
|
||||
var $var_expires = array();
|
||||
var $is_modified = FALSE;
|
||||
|
||||
@@ -90,7 +90,7 @@ class acm
|
||||
|
||||
if (file_exists($this->cache_dir . 'data_global.' . $phpEx))
|
||||
{
|
||||
if (!is_array($this->vars))
|
||||
if (!sizeof($this->vars))
|
||||
{
|
||||
$this->load();
|
||||
}
|
||||
@@ -190,7 +190,7 @@ class acm
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!is_array($this->vars))
|
||||
if (!sizeof($this->vars))
|
||||
{
|
||||
$this->load();
|
||||
}
|
||||
|
Reference in New Issue
Block a user