Remove bad !

This commit is contained in:
Isaac Connor
2026-01-06 09:29:18 -05:00
parent 25ab9c7010
commit 2e578aac40

View File

@@ -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'] != '') {