From 2e578aac403fa644f4e1e66a99c79321cc92e020 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 6 Jan 2026 09:29:18 -0500 Subject: [PATCH] Remove bad ! --- web/skins/classic/js/skin.js.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/js/skin.js.php b/web/skins/classic/js/skin.js.php index aae1f1e9a..1d7dedee4 100644 --- a/web/skins/classic/js/skin.js.php +++ b/web/skins/classic/js/skin.js.php @@ -146,7 +146,7 @@ if ($user) { // Only include config if logged in or auth turned off. The login view doesn't require any config. global $zm_config; foreach ($zm_config as $name=>$c) { - if (!empty($c['Private'])) { + if (empty($c['Private'])) { if (empty($c['Value'])) { echo 'const '. $name . ' = \'\';'.PHP_EOL; } else if (isset($c['Type']) and $c['Type'] == 'integer' and $c['Value'] != '') {