aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/lib/pagehandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/pagehandler.php b/engine/lib/pagehandler.php
index 471f776f9..97357b19f 100644
--- a/engine/lib/pagehandler.php
+++ b/engine/lib/pagehandler.php
@@ -106,7 +106,7 @@
$script = str_replace("..","",$script);
$callpath = $CONFIG->path . $handler . "/" . $page;
- if (!include($callpath)) {
+ if (!@include($callpath)) {
if (substr_count($callpath,'.php') == 0) {
if (substr($callpath,strlen($callpath) - 1, 1) != "/")
$callpath .= "/";