From d8a5352ab98c089ea6bfebc47ee1926c40a184f4 Mon Sep 17 00:00:00 2001 From: derixithy Date: Fri, 7 May 2021 14:08:53 -0400 Subject: [PATCH] Add PR #176 to fix typo in wire/config.php --- wire/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wire/config.php b/wire/config.php index 1ff57ec7..1ca24e0e 100644 --- a/wire/config.php +++ b/wire/config.php @@ -300,7 +300,7 @@ $config->sessionExpireSeconds = 86400; * if($session->hasCookie()) return true; * * // if URL is an admin URL, allow session (replace /processwire/ with your admin URL) - * if(strpos($config->requestPath(), '/processwire/) === 0) return true; + * if(strpos($config->requestPath(), '/processwire/') === 0) return true; * * // otherwise disallow session * return false;