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
6a4a7c868c
commit
57489f1013
|
@ -149,9 +149,7 @@ class Installer {
|
|||
}
|
||||
|
||||
//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