diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-03-07 12:38:22 -0800 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-03-07 12:38:22 -0800 |
commit | 22742c3b72a02c29eef0e678abd839e378a783c4 (patch) | |
tree | ede55cc06edf8fc8cd09417a436452a01231451f | |
parent | 0570c16e6ceb42d6b3afa93c1054e024091a3e08 (diff) |
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.
-rw-r--r-- | lib/router.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php index d34b84cd4..52051fdb5 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() { |