From 598815b21e94219eb66684c64802e165a35180ad Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 29 Aug 2012 22:38:06 +0200 Subject: [PATCH] More info about not compatible apps (app id) --- lib/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app.php b/lib/app.php index f6708ecb3d..5c0ec2f01e 100755 --- a/lib/app.php +++ b/lib/app.php @@ -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 ); } }