error handling in case a requested app doesn't exists

remotes/origin/ldap_group_count
Thomas Müller 11 years ago
parent bd643c47f3
commit 7f68497b39
  1. 3
      lib/private/installer.php

@ -407,6 +407,9 @@ class OC_Installer{
include OC_App::getAppPath($app)."/appinfo/install.php";
}
$info=OC_App::getAppInfo($app);
if (is_null($info)) {
return false;
}
OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app));
//set remote/public handelers

Loading…
Cancel
Save