summaryrefslogtreecommitdiff
path: root/lib/router.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-03-07 12:38:22 -0800
committerEvan Prodromou <evan@controlyourself.ca>2009-03-07 12:38:22 -0800
commit22742c3b72a02c29eef0e678abd839e378a783c4 (patch)
treeede55cc06edf8fc8cd09417a436452a01231451f /lib/router.php
parent0570c16e6ceb42d6b3afa93c1054e024091a3e08 (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.
Diffstat (limited to 'lib/router.php')
-rw-r--r--lib/router.php3
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()
{