]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Make OpenID login and registration URLs work
authorEvan Prodromou <evan@controlyourself.ca>
Sat, 7 Mar 2009 20:38:22 +0000 (12:38 -0800)
committerEvan Prodromou <evan@controlyourself.ca>
Sat, 7 Mar 2009 20:38:22 +0000 (12:38 -0800)
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

index d34b84cd43fe0f264ae48a25974795fe1656799c..52051fdb50a8c05aa43f70d57fd9382a2f6e2675 100644 (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()
     {