aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/acm')
-rw-r--r--phpBB/includes/acm/acm_file.php15
1 files changed, 14 insertions, 1 deletions
diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php
index 229685d431..27a126dc84 100644
--- a/phpBB/includes/acm/acm_file.php
+++ b/phpBB/includes/acm/acm_file.php
@@ -28,7 +28,14 @@ class acm
function load()
{
global $phpEx;
- @include($this->cache_dir . 'data_global.' . $phpEx);
+ if (file_exists($this->cache_dir . 'data_global.' . $phpEx))
+ {
+ @include($this->cache_dir . 'data_global.' . $phpEx);
+ }
+ else
+ {
+ return false;
+ }
}
function unload()
@@ -230,7 +237,13 @@ class acm
$query = preg_replace('/[\n\r\s\t]+/', ' ', $query);
$query_id = 'Cache id #' . count($this->sql_rowset);
+ if (!file_exists($this->cache_dir . 'sql_' . md5($query) . ".$phpEx"))
+ {
+ return false;
+ }
+
@include($this->cache_dir . 'sql_' . md5($query) . ".$phpEx");
+
if (!isset($expired))
{
return FALSE;