Remove a check for an unused variable
Left over from a refactoring https://github.com/nextcloud/server/pull/1940 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
431ccb6386
commit
4fd697e733
|
@ -141,9 +141,7 @@ class Installer {
|
|||
\OC_App::setupBackgroundJobs($info['background-jobs']);
|
||||
|
||||
//run appinfo/install.php
|
||||
if(!isset($data['noinstall']) or $data['noinstall']==false) {
|
||||
self::includeAppScript($basedir . '/appinfo/install.php');
|
||||
}
|
||||
self::includeAppScript($basedir . '/appinfo/install.php');
|
||||
|
||||
$appData = OC_App::getAppInfo($appId);
|
||||
OC_App::executeRepairSteps($appId, $appData['repair-steps']['install']);
|
||||
|
|
Loading…
Reference in New Issue