diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-04-24 21:36:54 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-04-24 21:36:54 +0200 |
commit | 9b29bc96de688f1d3289444625ce5bb7e7d37ac5 (patch) | |
tree | 5108238e4ab304fdbaef03fc472d1d720e1a0d9d /lib | |
parent | 684007bbaefe0bb415a1903e2807809623c4b250 (diff) | |
download | nextcloud-server-9b29bc96de688f1d3289444625ce5bb7e7d37ac5.tar.gz nextcloud-server-9b29bc96de688f1d3289444625ce5bb7e7d37ac5.zip |
remove debug message
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 f8f9362a64a..231819b36ab 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{ - echo "WTF"; + header('404 Not Found') } } |