summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/init.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/init.php b/inc/init.php
index 58056083d..b01711e4b 100644
--- a/inc/init.php
+++ b/inc/init.php
@@ -458,7 +458,7 @@ function fullpath($path){
if(!$iswin) $finalpath = '/'.$finalpath;
// check then return valid path or filename
- if (file_exists($finalpath)) {
+ if (@file_exists($finalpath)) {
return ($finalpath);
}
else return false;