disable code check for shipped apps

This commit is contained in:
Georg Ehrke 2014-06-16 13:49:02 +02:00
parent 65028c459b
commit 86f546ff64
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ class OC_Installer{
}
$info=OC_App::getAppInfo($extractDir.'/appinfo/info.xml', true);
// check the code for not allowed calls
if(!OC_Installer::checkCode($info['id'], $extractDir)) {
if(!$isShipped && !OC_Installer::checkCode($info['id'], $extractDir)) {
OC_Helper::rmdirr($extractDir);
throw new \Exception($l->t("App can't be installed because of not allowed code in the App"));
}