From 22742c3b72a02c29eef0e678abd839e378a783c4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 7 Mar 2009 12:38:22 -0800 Subject: 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. --- lib/router.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') 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() { -- cgit v1.2.3-54-g00ecf