From: Evan Prodromou Date: Sat, 7 Mar 2009 20:38:22 +0000 (-0800) Subject: Make OpenID login and registration URLs work X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=22742c3b72a02c29eef0e678abd839e378a783c4;p=quix0rs-gnu-social.git Make OpenID login and registration URLs work The OpenID login and registration URLs were not generating correctly. I added them to the list of "bare" actions in the router class, and they work great now. --- diff --git a/lib/router.php b/lib/router.php index d34b84cd43..52051fdb50 100644 --- a/lib/router.php +++ b/lib/router.php @@ -50,7 +50,8 @@ class Router var $m = null; static $inst = null; static $bare = array('requesttoken', 'accesstoken', 'userauthorization', - 'postnotice', 'updateprofile', 'finishremotesubscribe'); + 'postnotice', 'updateprofile', 'finishremotesubscribe', + 'finishopenidlogin', 'finishaddopenid'); static function get() {