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.
This commit is contained in:
Evan Prodromou 2009-03-07 12:38:22 -08:00
parent 0570c16e6c
commit 22742c3b72

View File

@ -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()
{