summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-04-24 21:37:19 +0200
committerGeorg Ehrke <dev@georgswebsite.de>2012-04-24 21:37:19 +0200
commitfb84d0aff803c77e65d2faa49f320c6e12639593 (patch)
tree322a00d7a0c8fc4594db1ec3360c42fc5ebf5e42 /lib
parent9b29bc96de688f1d3289444625ce5bb7e7d37ac5 (diff)
downloadnextcloud-server-fb84d0aff803c77e65d2faa49f320c6e12639593.tar.gz
nextcloud-server-fb84d0aff803c77e65d2faa49f320c6e12639593.zip
fix php fail
Diffstat (limited to 'lib')
-rw-r--r--lib/base.php2
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');
}
}