summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-08-29 22:38:06 +0200
committerBart Visscher <bartv@thisnet.nl>2012-08-29 22:38:06 +0200
commit598815b21e94219eb66684c64802e165a35180ad (patch)
tree14ae945689f67de2677af8c39bf50dbb1c1c8f45
parentc958d5ba808ce64083470f65f11d3f9e8b74f7a1 (diff)
downloadnextcloud-server-598815b21e94219eb66684c64802e165a35180ad.tar.gz
nextcloud-server-598815b21e94219eb66684c64802e165a35180ad.zip
More info about not compatible apps (app id)
-rwxr-xr-xlib/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php
index f6708ecb3df..5c0ec2f01ef 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 );
}
}