From 57708c016c96b330ce952a67d4e2a4f732d71ecb Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Thu, 23 May 2019 14:59:21 -0400 Subject: [PATCH] dont need AUTH HASH LOGIN to be on --- web/includes/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/includes/auth.php b/web/includes/auth.php index 7b8ce062d..367ccee74 100644 --- a/web/includes/auth.php +++ b/web/includes/auth.php @@ -376,7 +376,7 @@ if ( ZM_OPT_USE_AUTH ) { userLogin($_REQUEST['username'], $_REQUEST['password'], false); } - if ( ZM_AUTH_HASH_LOGINS && empty($user) && !empty($_REQUEST['token']) ) { + if (empty($user) && !empty($_REQUEST['token']) ) { $ret = validateToken($_REQUEST['token'], 'access'); $user = $ret[0];