From 4fd697e733b5e64366f0f0b740533f11280146c3 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 23 Apr 2018 11:53:47 +0200 Subject: [PATCH] Remove a check for an unused variable Left over from a refactoring https://github.com/nextcloud/server/pull/1940 Signed-off-by: Morris Jobke --- lib/private/Installer.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/private/Installer.php b/lib/private/Installer.php index 1b40b4955d..391e98171c 100644 --- a/lib/private/Installer.php +++ b/lib/private/Installer.php @@ -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']);