From: Robert Kaiser Date: Mon, 14 Nov 2016 21:00:57 +0000 (+0100) Subject: add a comment for debugging - we may want to add an insecure local domain name for... X-Git-Url: https://git-public.kairo.at/?p=authserver.git;a=commitdiff_plain;h=a5d730af6994ede8abf077eb2b2532749447f16d add a comment for debugging - we may want to add an insecure local domain name for testing temporarily --- diff --git a/authutils.php-class b/authutils.php-class index 9cd000c..e72768a 100755 --- a/authutils.php-class +++ b/authutils.php-class @@ -77,6 +77,7 @@ class AuthUtils { // *** constructor *** $this->db = $db; $this->db->exec("SET time_zone='+00:00';"); // Execute directly on PDO object, set session to UTC to make our gmdate() values match correctly. + // For debugging, potentially add |robert\.box\.kairo\.at to that regex temporarily. $this->running_on_localhost = preg_match('/^((.+\.)?localhost|127\.0\.0\.\d+)$/', $_SERVER['SERVER_NAME']); if (array_key_exists('pwd_cost', $settings)) { $this->pwd_cost = $settings['pwd_cost'];