diff options
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/router.php b/lib/router.php index f70b67f38..95ce77e5e 100644 --- a/lib/router.php +++ b/lib/router.php @@ -116,6 +116,7 @@ class Router $m->connect('main/openid', array('action' => 'openidlogin')); $m->connect('main/remote', array('action' => 'remotesubscribe')); + $m->connect('main/remote?nickname=:nickname', array('action' => 'remotesubscribe'), array('nickname' => '[A-Za-z0-9_-]+')); foreach (array('requesttoken', 'accesstoken', 'userauthorization', 'postnotice', 'updateprofile', 'finishremotesubscribe') as $action) { |