Skip to content
Snippets Groups Projects
Commit 7f68497b authored by Thomas Müller's avatar Thomas Müller
Browse files

error handling in case a requested app doesn't exists

parent bd643c47
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment