diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-08-16 13:11:50 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-08-16 13:11:50 +0000 |
commit | 15e04808fc3a6699ac857c2252cce70090df80ba (patch) | |
tree | d841c7b1ee6c9cf1b2b6f6bd344cf2b59005abdc /phpBB/includes/acm | |
parent | 4235be4bcb07a121afd0b6a202fb7b3823dcce67 (diff) | |
download | forums-15e04808fc3a6699ac857c2252cce70090df80ba.tar forums-15e04808fc3a6699ac857c2252cce70090df80ba.tar.gz forums-15e04808fc3a6699ac857c2252cce70090df80ba.tar.bz2 forums-15e04808fc3a6699ac857c2252cce70090df80ba.tar.xz forums-15e04808fc3a6699ac857c2252cce70090df80ba.zip |
writeable -> writable merge
git-svn-id: file:///svn/phpbb/trunk@8762 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acm')
-rw-r--r-- | phpBB/includes/acm/acm_file.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php index d8477376ea..1093ee1fa2 100644 --- a/phpBB/includes/acm/acm_file.php +++ b/phpBB/includes/acm/acm_file.php @@ -143,7 +143,7 @@ class acm } } } - + set_config('cache_last_gc', time(), true); } @@ -438,7 +438,7 @@ class acm */ private function remove_file($filename, $check = false) { - if ($check && !@is_writeable($this->cache_dir)) + if ($check && !@is_writable($this->cache_dir)) { // E_USER_ERROR - not using language entry - intended. trigger_error('Unable to remove files within ' . $this->cache_dir . '. Please check directory permissions.', E_USER_ERROR); |