1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[ticket/10014] Clearly indicate fatal errors in file acm.

If acm_file cannot open the cache file for writing, it prints a message
to that effect and calls die(). The message itself does not indicate that
it is a fatal error, and someone seeing the message might expect that
inability to write to cache is not fatal.

Make it clear that the error is fatal by printing the word "Fatal" before
the message.

PHPBB3-10014
This commit is contained in:
Oleg Pudeyev 2011-01-27 23:19:09 -05:00
parent 9dfb059e2e
commit 5e97dd74c7

View File

@ -88,11 +88,11 @@ class acm
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;
}
die('Not able to open ' . $this->cache_dir . 'data_global.' . $phpEx);
die('Fatal: Not able to open ' . $this->cache_dir . 'data_global.' . $phpEx);
exit;
}