Skip to content

Commit 9a2ba0c

Browse files
committed
Fix reference to $key during verify()
1 parent bb12e34 commit 9a2ba0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/Authentication.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ public static function verify() {
343343

344344
// if IP is different, update session
345345
if ($lookup['ip_address'] !== getenv('REMOTE_ADDR')) {
346-
self::store($key, self::getFingerprint(self::$user));
346+
self::store(self::$key, self::getFingerprint(self::$user));
347347
}
348348

349349
return true;

0 commit comments

Comments
 (0)