From b9ab8e4f0ab93b7d32edb99f3c124d0b57a97ec3 Mon Sep 17 00:00:00 2001 From: Phy Date: Wed, 13 Mar 2019 13:54:14 -0400 Subject: [PATCH] install.php: respect useacl=0 choice, fixes #2576 --- install.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.php b/install.php index dfbce1de8..64f60c51f 100644 --- a/install.php +++ b/install.php @@ -309,6 +309,9 @@ function check_data(&$d){ $error[] = sprintf($lang['i_badval'],$lang['email']); $ok = false; } + }else{ + // Since default = 1, browser won't send acl=0 when user untick acl + $d['acl'] = '0'; } } $d = array_merge($form_default, $d);