]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix return statement
authorBart Visscher <bartv@thisnet.nl>
Mon, 17 Sep 2012 15:27:37 +0000 (17:27 +0200)
committerBart Visscher <bartv@thisnet.nl>
Mon, 17 Sep 2012 18:00:31 +0000 (20:00 +0200)
lib/app.php

index 28f1f16ebafda92795e03b43312f1c3cb858ca0f..49e644c1f72b2765d05c4be2c74b69b261b8894b 100755 (executable)
@@ -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;
                }
        }
 }