Skip to content

Commit

Permalink
Fixed intermittent failed logins caused by stripped plus characters i…
Browse files Browse the repository at this point in the history
…n openid sig
  • Loading branch information
LavaToaster committed Apr 25, 2015
1 parent 932384a commit a82b633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/system/Login/Steam.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ private function validate()
{
$params = array(
'openid.signed' => \IPS\Request::i()->openid_signed,
'openid.sig' => \IPS\Request::i()->openid_sig,
'openid.sig' => str_replace(' ', '+', \IPS\Request::i()->openid_sig),
'openid.ns' => 'http://specs.openid.net/auth/2.0',
);

Expand Down

0 comments on commit a82b633

Please sign in to comment.