Merge branch '2267-Pete-Tree-VIew-dev' into 'develop'

fixed conditional in ajax.php

See merge request artica/pandorafms!1497
This commit is contained in:
vgilc 2018-05-24 16:41:59 +02:00
commit c489ae1b4c
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');