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

Remove unused variable

The assignment to $stateID is dead and can be removed.
parent beb4db73
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ class sspmod_authfacebook_Auth_Source_Facebook extends SimpleSAML_Auth_Source {
// We are going to need the authId in order to retrieve this authentication source later
$state[self::AUTHID] = $this->authId;
$stateID = SimpleSAML_Auth_State::saveState($state, self::STAGE_INIT);
SimpleSAML_Auth_State::saveState($state, self::STAGE_INIT);
$facebook = new sspmod_authfacebook_Facebook(array('appId' => $this->api_key, 'secret' => $this->secret), $state);
$facebook->destroySession();
......
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