diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-17 12:14:27 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-17 12:14:27 +0000 |
commit | 9b751a330dc1f6dc07f8728feaee31454ebac6d7 (patch) | |
tree | 8ec7c325a44d56b6fddcad9daa18f90841c9c833 /phpBB/includes/acm/acm_file.php | |
parent | 053730e47727c5d91ba1a3a96196ab5802dedc5a (diff) | |
download | forums-9b751a330dc1f6dc07f8728feaee31454ebac6d7.tar forums-9b751a330dc1f6dc07f8728feaee31454ebac6d7.tar.gz forums-9b751a330dc1f6dc07f8728feaee31454ebac6d7.tar.bz2 forums-9b751a330dc1f6dc07f8728feaee31454ebac6d7.tar.xz forums-9b751a330dc1f6dc07f8728feaee31454ebac6d7.zip |
- Re-populate arrays on cache purge/save to allow re-using some functions without warnings
- fix the annoying "last page empty" bug on inactive users page.
git-svn-id: file:///svn/phpbb/trunk@8239 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acm/acm_file.php')
-rw-r--r-- | phpBB/includes/acm/acm_file.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php index 2b9eca6c88..775e8d4495 100644 --- a/phpBB/includes/acm/acm_file.php +++ b/phpBB/includes/acm/acm_file.php @@ -67,6 +67,11 @@ class acm unset($this->var_expires); unset($this->sql_rowset); unset($this->sql_row_pointer); + + $this->vars = array(); + $this->var_expires = array(); + $this->sql_rowset = array(); + $this->sql_row_pointer = array(); } /** @@ -232,6 +237,11 @@ class acm unset($this->sql_rowset); unset($this->sql_row_pointer); + $this->vars = array(); + $this->var_expires = array(); + $this->sql_rowset = array(); + $this->sql_row_pointer = array(); + $this->is_modified = false; } |