File: includes/acm/acm_file.php
Unmodified
Added
Modified
Removed
Line 88 | Line 88 |
---|
if (!phpbb_is_writable($this->cache_dir)) { // We need to use die() here, because else we may encounter an infinite loop (the message handler calls $cache->unload())
|
if (!phpbb_is_writable($this->cache_dir)) { // We need to use die() here, because else we may encounter an infinite loop (the message handler calls $cache->unload())
|
die($this->cache_dir . ' is NOT writable.');
| die('Fatal: ' . $this->cache_dir . ' is NOT writable.');
|
exit; }
|
exit; }
|
die('Not able to open ' . $this->cache_dir . 'data_global.' . $phpEx);
| die('Fatal: Not able to open ' . $this->cache_dir . 'data_global.' . $phpEx);
|
exit; }
| exit; }
|