diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-04-24 21:37:19 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-04-24 21:37:19 +0200 |
commit | fb84d0aff803c77e65d2faa49f320c6e12639593 (patch) | |
tree | 322a00d7a0c8fc4594db1ec3360c42fc5ebf5e42 /lib | |
parent | 9b29bc96de688f1d3289444625ce5bb7e7d37ac5 (diff) | |
download | nextcloud-server-fb84d0aff803c77e65d2faa49f320c6e12639593.tar.gz nextcloud-server-fb84d0aff803c77e65d2faa49f320c6e12639593.zip |
fix php fail
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index 231819b36ab..a7b7d082460 100644 --- a/lib/base.php +++ b/lib/base.php @@ -287,7 +287,7 @@ class OC{ if(file_exists(OC::$APPSROOT . '/apps/' . OC::$REQUESTEDAPP . '/' . OC::$REQUESTEDFILE)){ require_once(OC::$APPSROOT . '/apps/' . OC::$REQUESTEDAPP . '/' . OC::$REQUESTEDFILE); }else{ - header('404 Not Found') + header('404 Not Found'); } } |