Skip to content
Snippets Groups Projects
Unverified Commit 8968ea1f authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Fix improper use of 'self' keyword

parent 092968d7
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ abstract class SessionHandlerCookie extends SessionHandler ...@@ -71,7 +71,7 @@ abstract class SessionHandlerCookie extends SessionHandler
public function getCookieSessionId() public function getCookieSessionId()
{ {
if ($this->session_id === null) { if ($this->session_id === null) {
if (self::hasSessionCookie()) { if ($this->hasSessionCookie()) {
// attempt to retrieve the session id from the cookie // attempt to retrieve the session id from the cookie
$this->session_id = $_COOKIE[$this->cookie_name]; $this->session_id = $_COOKIE[$this->cookie_name];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment