diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-08-17 20:15:28 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-08-17 20:15:28 +0000 |
commit | 389b50ed9e50d9da4f86ed37f57de294221ef45e (patch) | |
tree | 4f74c0271bab794faaa1c23ddc4a023eb64f5ceb | |
parent | bf25f0df9ad172aa8353656441ace86cddecbb9d (diff) | |
download | forums-389b50ed9e50d9da4f86ed37f57de294221ef45e.tar forums-389b50ed9e50d9da4f86ed37f57de294221ef45e.tar.gz forums-389b50ed9e50d9da4f86ed37f57de294221ef45e.tar.bz2 forums-389b50ed9e50d9da4f86ed37f57de294221ef45e.tar.xz forums-389b50ed9e50d9da4f86ed37f57de294221ef45e.zip |
Minor changes
git-svn-id: file:///svn/phpbb/trunk@4413 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/acm/acm_db.php | 2 | ||||
-rw-r--r-- | phpBB/includes/acm/acm_file.php | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/includes/acm/acm_db.php b/phpBB/includes/acm/acm_db.php index ca17abe63a..28df2e62be 100644 --- a/phpBB/includes/acm/acm_db.php +++ b/phpBB/includes/acm/acm_db.php @@ -1,6 +1,6 @@ <?php /*************************************************************************** - * acm_db.php + * acm_db.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php index 46c2164f78..e778000a37 100644 --- a/phpBB/includes/acm/acm_file.php +++ b/phpBB/includes/acm/acm_file.php @@ -64,6 +64,8 @@ class acm @flock($fp, LOCK_UN); fclose($fp); } + + $this->is_modified = FALSE; } function tidy($max_age = 0) @@ -83,6 +85,7 @@ class acm unlink($this->cache_dir . $entry); } } + @closedir($dir); if (file_exists($this->cache_dir . 'data_global.' . $phpEx)) { |