From 404bbb79f0bd3de08a198371fff99d8f62c2a57f Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 29 Sep 2016 10:11:37 -0400 Subject: [PATCH] must return the generated hash --- web/includes/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/web/includes/functions.php b/web/includes/functions.php index 9a1caddfa..d0caa1d6e 100644 --- a/web/includes/functions.php +++ b/web/includes/functions.php @@ -161,6 +161,7 @@ function generateAuthHash( $useRemoteAddr ) { $_SESSION['AuthHash'] = $auth; $_SESSION['AuthHashGeneratedAt'] = time(); } # end if AuthHash is not cached + return $_SESSION['AuthHash']; } else { $auth = ""; }