don't validate listenee URI

Validation of the listenee URI was failing for tag: URIs. So,
abandoned validation for now. Maybe in the future I'll add it back in,
with a second check for a valid tag URI if it doesn't work.

darcs-hash:20080605033911-84dde-0cf77fad66198a790450183eba11028e153f43d1.gz
This commit is contained in:
Evan Prodromou 2008-06-04 23:39:11 -04:00
parent 1254761770
commit 29d9f0ae64
1 changed files with 1 additions and 3 deletions

View File

@ -365,9 +365,7 @@ class UserauthorizationAction extends Action {
throw new OAuthException("Listener URI '$listener' not found here");
}
$listenee = $req->get_parameter('omb_listenee');
if (!Validate::uri($listenee)) {
throw new OAuthException("Listenee URI '$listenee' not a valid URI");
} else if (strlen($listenee) > 255) {
if (strlen($listenee) > 255) {
throw new OAuthException("Listenee URI '$listenee' too long");
}
$nickname = $req->get_parameter('omb_listenee_nickname');