Merge branch 'develop' of github.com:itflow-org/itflow into develop

This commit is contained in:
johnnyq
2025-01-28 15:08:41 -05:00

View File

@@ -75,7 +75,7 @@ $config_login_remember_me_expire = intval($row['config_login_remember_me_expire'
// If no/incorrect 'key' is supplied, send to client portal instead
if ($config_login_key_required) {
if (!isset($_GET['key']) || $_GET['key'] !== $config_login_key_secret) {
header("Location: portal");
header("Location: client");
exit();
}
}