]> source.dussan.org Git - nextcloud-server.git/commitdiff
More info about not compatible apps (app id)
authorBart Visscher <bartv@thisnet.nl>
Wed, 29 Aug 2012 20:38:06 +0000 (22:38 +0200)
committerBart Visscher <bartv@thisnet.nl>
Wed, 29 Aug 2012 20:38:06 +0000 (22:38 +0200)
lib/app.php

index f6708ecb3df15a0bc0df373b43ddc00ec13e62f4..5c0ec2f01ef39a201e0562c64d7b6bec55a7ea00 100755 (executable)
@@ -571,7 +571,7 @@ class OC_App{
                        // check if the app is compatible with this version of ownCloud
                        $info = OC_App::getAppInfo($app);
                        if(!isset($info['require']) or ($version[0]>$info['require'])){
-                               OC_Log::write('core','App "'.$info['name'].'" can\'t be used because it is not compatible with this version of ownCloud',OC_Log::ERROR);
+                               OC_Log::write('core','App "'.$info['name'].'" ('.$app.') can\'t be used because it is not compatible with this version of ownCloud',OC_Log::ERROR);
                                OC_App::disable( $app );
                        }
                }