fixed conditional in ajax.php

This commit is contained in:
danielmaya 2018-05-24 16:28:51 +02:00
parent ad3a7071b3
commit 8a6755d224
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ if (isset ($_GET["loginhash"])) {
$public_hash = get_parameter('hash', false);
// Check user
if ($public_hash === false) {
if ($public_hash == false) {
check_login();
} else {
enterprise_include_once('include/functions_dashboard.php');