From 8968ea1ff06e65fca1277922045904219db9697c Mon Sep 17 00:00:00 2001 From: Tim van Dijen <tvdijen@gmail.com> Date: Sun, 5 Aug 2018 13:05:31 +0200 Subject: [PATCH] Fix improper use of 'self' keyword --- lib/SimpleSAML/SessionHandlerCookie.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SimpleSAML/SessionHandlerCookie.php b/lib/SimpleSAML/SessionHandlerCookie.php index a9995081b..7eea4656d 100644 --- a/lib/SimpleSAML/SessionHandlerCookie.php +++ b/lib/SimpleSAML/SessionHandlerCookie.php @@ -71,7 +71,7 @@ abstract class SessionHandlerCookie extends SessionHandler public function getCookieSessionId() { if ($this->session_id === null) { - if (self::hasSessionCookie()) { + if ($this->hasSessionCookie()) { // attempt to retrieve the session id from the cookie $this->session_id = $_COOKIE[$this->cookie_name]; } -- GitLab