Example #1
0
 function Auth_OpenID_UntrustedReturnURL($return_to, $trust_root)
 {
     global $_Auth_OpenID_OpenID_Prefix;
     $query = array($_Auth_OpenID_OpenID_Prefix . 'return_to' => $return_to, $_Auth_OpenID_OpenID_Prefix . 'trust_root' => $trust_root);
     parent::Auth_OpenID_ServerError($query);
 }
Example #2
0
	function Auth_OpenID_UntrustedReturnURL($message, $return_to,
	$trust_root)
	{
		parent::Auth_OpenID_ServerError($message, "Untrusted return_to URL");
		$this->return_to = $return_to;
		$this->trust_root = $trust_root;
	}
Example #3
0
 public function __construct($message, $return_to, $trust_root)
 {
     parent::Auth_OpenID_ServerError($message, "Untrusted return_to URL");
     $this->return_to = $return_to;
     $this->trust_root = $trust_root;
 }