Fix White Label not displaying on the login page

This commit is contained in:
johnnyq 2025-12-14 13:04:53 -05:00
parent 9b8d37b577
commit 1916456c84
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && (isset($_POST['login']) || isset($_
</div>
<?php
if (isset($config_whitelabel_enabled) && !$config_whitelabel_enabled) {
if (!$config_whitelabel_enabled) {
echo '<small class="text-muted">Powered by ITFlow</small>';
}
?>