Loading web/openid.php +1 −7 Original line number Diff line number Diff line Loading @@ -191,15 +191,9 @@ class OpenID extends \Magic { /** * Return OpenID response fields * @return array|FALSE * @return array **/ function response() { preg_match_all('/(?<=^|&)openid\.([^=]+)=([^&]+)/', $_SERVER['QUERY_STRING'],$matches,PREG_SET_ORDER); if (!$matches) return FALSE; foreach ($matches as $match) $this->args[$match[1]]=urldecode($match[2]); return $this->args; } Loading Loading
web/openid.php +1 −7 Original line number Diff line number Diff line Loading @@ -191,15 +191,9 @@ class OpenID extends \Magic { /** * Return OpenID response fields * @return array|FALSE * @return array **/ function response() { preg_match_all('/(?<=^|&)openid\.([^=]+)=([^&]+)/', $_SERVER['QUERY_STRING'],$matches,PREG_SET_ORDER); if (!$matches) return FALSE; foreach ($matches as $match) $this->args[$match[1]]=urldecode($match[2]); return $this->args; } Loading