diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 10:25:15 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 10:25:15 +0000 |
commit | 2c0154782f1e84e1bcf2517a910abe2ceab28ae6 (patch) | |
tree | 439723033570bad024cb215523aad6b267f2fa87 | |
parent | 2cb14281668abaabfff6eeea1b20ad31efba7da6 (diff) | |
download | elgg-2c0154782f1e84e1bcf2517a910abe2ceab28ae6.tar.gz elgg-2c0154782f1e84e1bcf2517a910abe2ceab28ae6.tar.bz2 |
Removing an error log entry in the page handler function
git-svn-id: https://code.elgg.org/elgg/trunk@1878 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/pagehandler.php | 2 |
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 .= "/";
|