From f4cb85f3516961099b0c1e1c365a3c8f82a52ea6 Mon Sep 17 00:00:00 2001 From: Till Brehm Date: Mon, 24 Jul 2017 18:45:52 +0200 Subject: [PATCH] Do not ask questions in autoinstall expert mode. --- install/lib/installer_base.lib.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index 51361c3c69..186458e0e3 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -190,6 +190,7 @@ class installer_base { public function force_configure_app($service, $enable_force=true) { $force = false; + if(AUTOINSTALL == true) return false; if($enable_force == true) { swriteln("[WARN] autodetect for $service failed"); } else { -- GitLab