Skip to content
Snippets Groups Projects
Commit ca88cf93 authored by Bart Visscher's avatar Bart Visscher
Browse files

check for valid appinfo in installer

parent c5468741
Branches
No related tags found
No related merge requests found
...@@ -396,6 +396,9 @@ class OC_Installer{ ...@@ -396,6 +396,9 @@ class OC_Installer{
include OC_App::getAppPath($app)."/appinfo/install.php"; include OC_App::getAppPath($app)."/appinfo/install.php";
} }
$info=OC_App::getAppInfo($app); $info=OC_App::getAppInfo($app);
if (is_null($info)) {
return;
}
OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app)); OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app));
//set remote/public handelers //set remote/public handelers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment