LoginManager: remove unused parameter
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
parent
89ccc83ba4
commit
68dcaccfa4
2 changed files with 2 additions and 3 deletions
|
@ -48,7 +48,6 @@ public function __construct(& $globals, $configManager, $sessionManager)
|
|||
/**
|
||||
* Check user session state and validity (expiration)
|
||||
*
|
||||
* @param array $session The $_SESSION array (reference)
|
||||
* @param array $cookie The $_COOKIE array
|
||||
* @param string $webPath Path on the server in which the cookie will be available on
|
||||
* @param string $clientIpId Client IP address identifier
|
||||
|
@ -56,7 +55,7 @@ public function __construct(& $globals, $configManager, $sessionManager)
|
|||
*
|
||||
* @return bool true if the user session is valid, false otherwise
|
||||
*/
|
||||
public function checkLoginState(& $session, $cookie, $webPath, $clientIpId, $token)
|
||||
public function checkLoginState($cookie, $webPath, $clientIpId, $token)
|
||||
{
|
||||
if (! $this->configManager->exists('credentials.login')) {
|
||||
// Shaarli is not configured yet
|
||||
|
|
|
@ -179,7 +179,7 @@
|
|||
// a token depending of deployment salt, user password, and the current ip
|
||||
define('STAY_SIGNED_IN_TOKEN', sha1($conf->get('credentials.hash') . $_SERVER['REMOTE_ADDR'] . $conf->get('credentials.salt')));
|
||||
|
||||
$loginManager->checkLoginState($_SESSION, $_COOKIE, WEB_PATH, $clientIpId, STAY_SIGNED_IN_TOKEN);
|
||||
$loginManager->checkLoginState($_COOKIE, WEB_PATH, $clientIpId, STAY_SIGNED_IN_TOKEN);
|
||||
|
||||
/**
|
||||
* Adapter function to ensure compatibility with third-party templates
|
||||
|
|
Loading…
Reference in a new issue