summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-09-17 17:27:37 +0200
committerBart Visscher <bartv@thisnet.nl>2012-09-17 20:00:31 +0200
commitce10e1c19a834d5bcec2a843904c13ee0ffcf4c3 (patch)
treec95e4a24bd66d6b40a4dbce4bb4717b935a9fe32
parentab33578add88a94b94835741044b6dbfca4720af (diff)
downloadnextcloud-server-ce10e1c19a834d5bcec2a843904c13ee0ffcf4c3.tar.gz
nextcloud-server-ce10e1c19a834d5bcec2a843904c13ee0ffcf4c3.zip
Fix return statement
-rwxr-xr-xlib/app.php2
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;
}
}
}