diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-09-17 17:27:37 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-09-17 20:00:31 +0200 |
commit | ce10e1c19a834d5bcec2a843904c13ee0ffcf4c3 (patch) | |
tree | c95e4a24bd66d6b40a4dbce4bb4717b935a9fe32 | |
parent | ab33578add88a94b94835741044b6dbfca4720af (diff) | |
download | nextcloud-server-ce10e1c19a834d5bcec2a843904c13ee0ffcf4c3.tar.gz nextcloud-server-ce10e1c19a834d5bcec2a843904c13ee0ffcf4c3.zip |
Fix return statement
-rwxr-xr-x | lib/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php index 28f1f16ebaf..49e644c1f72 100755 --- a/lib/app.php +++ b/lib/app.php @@ -640,7 +640,7 @@ class OC_App{ } }else{ OC_Log::write('core', 'Can\'t get app storage, app '.$appid.' not enabled', OC_Log::ERROR); - false; + return false; } } } |