aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm/acm_file.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-02-01 07:41:21 +0100
committerAndreas Fischer <bantu@phpbb.com>2011-02-01 07:41:21 +0100
commitb414a4d107b3baa4b6d2f600e6f52211359ec3a5 (patch)
tree975b61c8e18ac5e867101b56324b4d31bddf92fe /phpBB/includes/acm/acm_file.php
parente685c1c005ec146fe802f1ff6fb38cb1fe34ed7a (diff)
parent5e97dd74c7a84869ac6f3b1bcd91122be8fddb50 (diff)
downloadforums-b414a4d107b3baa4b6d2f600e6f52211359ec3a5.tar
forums-b414a4d107b3baa4b6d2f600e6f52211359ec3a5.tar.gz
forums-b414a4d107b3baa4b6d2f600e6f52211359ec3a5.tar.bz2
forums-b414a4d107b3baa4b6d2f600e6f52211359ec3a5.tar.xz
forums-b414a4d107b3baa4b6d2f600e6f52211359ec3a5.zip
Merge branch 'ticket/p/10014' into develop-olympus
* ticket/p/10014: [ticket/10014] Clearly indicate fatal errors in file acm.
Diffstat (limited to 'phpBB/includes/acm/acm_file.php')
-rw-r--r--phpBB/includes/acm/acm_file.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php
index 5c1876d006..524a28561e 100644
--- a/phpBB/includes/acm/acm_file.php
+++ b/phpBB/includes/acm/acm_file.php
@@ -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;
}