Commit 7bb00d5f authored by Bong Cosca's avatar Bong Cosca
Browse files

Replace underscores in OpenId keys with dots

parent 926b193b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ class OpenID extends \Magic {
	function verified($proxy=NULL) {
		foreach ($_GET as $key=>$val)
			if (preg_match('/^openid_(.+)/',$key,$match))
				$this->args[$match[1]]=$val;
				$this->args[str_replace('_','.',$match[1])]=$val;
		if ($this->args['mode']!='error' && $url=$this->discover($proxy)) {
			$this->args['mode']='check_authentication';
			$var=array();