From 87334d579ea683e04c95565a76f0ccff5e2a5e2c Mon Sep 17 00:00:00 2001 From: RD WebDesign Date: Wed, 24 Aug 2022 14:53:58 -0300 Subject: [PATCH] Add missing parenthesis Signed-off-by: RD WebDesign --- scripts/pi-hole/php/header_authenticated.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pi-hole/php/header_authenticated.php b/scripts/pi-hole/php/header_authenticated.php index 8b37cffe..1d5a5d04 100644 --- a/scripts/pi-hole/php/header_authenticated.php +++ b/scripts/pi-hole/php/header_authenticated.php @@ -21,7 +21,7 @@ require_once 'scripts/pi-hole/php/func.php'; require 'scripts/pi-hole/php/theme.php'; // Retrieve layout setting from setupVars -if (isset($setupVars['WEBUIBOXEDLAYOUT']) && !$setupVars['WEBUIBOXEDLAYOUT'] === 'boxed') { +if (isset($setupVars['WEBUIBOXEDLAYOUT']) && !($setupVars['WEBUIBOXEDLAYOUT'] === 'boxed')) { $boxedlayout = false; } else { $boxedlayout = true;