From aed3218e9c8e741d8541a556ba56d8192f5afcd2 Mon Sep 17 00:00:00 2001 From: Thom Pol Date: Tue, 23 Feb 2021 11:22:23 +0100 Subject: [PATCH 1/2] Don't disable php8.0 as it does not exist anymore (#31) --- lib/os/class.ISPConfigDebianOS.inc.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/os/class.ISPConfigDebianOS.inc.php b/lib/os/class.ISPConfigDebianOS.inc.php index ccaa6e9..db43a75 100644 --- a/lib/os/class.ISPConfigDebianOS.inc.php +++ b/lib/os/class.ISPConfigDebianOS.inc.php @@ -161,9 +161,10 @@ class ISPConfigDebianOS extends ISPConfigBaseOS { $modules = array( 'mpm_prefork' ); - if(ISPConfig::wantsPHP() !== 'system') { + // Should not be needed anymore as mod-php is not installed + /*if(ISPConfig::wantsPHP() !== 'system') { array_unshift($modules, 'php8.0'); - } + }*/ return $modules; } -- GitLab From 6a7f47510e884006f4f4b4e6075aeb2b91cd1173 Mon Sep 17 00:00:00 2001 From: Thom Pol Date: Tue, 23 Feb 2021 11:25:34 +0100 Subject: [PATCH 2/2] Don't disable php8.0 as it does not exist anymore (#31) --- lib/os/class.ISPConfigDebianOS.inc.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/os/class.ISPConfigDebianOS.inc.php b/lib/os/class.ISPConfigDebianOS.inc.php index db43a75..89f4857 100644 --- a/lib/os/class.ISPConfigDebianOS.inc.php +++ b/lib/os/class.ISPConfigDebianOS.inc.php @@ -161,10 +161,7 @@ class ISPConfigDebianOS extends ISPConfigBaseOS { $modules = array( 'mpm_prefork' ); - // Should not be needed anymore as mod-php is not installed - /*if(ISPConfig::wantsPHP() !== 'system') { - array_unshift($modules, 'php8.0'); - }*/ + return $modules; } -- GitLab