summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/router.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php
index b18a5523e..b142022f0 100644
--- a/lib/router.php
+++ b/lib/router.php
@@ -117,6 +117,11 @@ class Router
$m->connect('main/openid', array('action' => 'openidlogin'));
$m->connect('main/remote', array('action' => 'remotesubscribe'));
+ foreach (array('requesttoken', 'accesstoken', 'userauthorization',
+ 'postnotice', 'updateprofile') as $action) {
+ $m->connect('index.php?action=' . $action, array('action' => $action));
+ }
+
// settings
foreach (array('profile', 'avatar', 'password', 'openid', 'im',
@@ -411,4 +416,4 @@ class Router
return $this->m->generate($args, $params, $fragment);
}
-} \ No newline at end of file
+}