diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-25 14:52:25 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-08-25 14:52:25 -0700 |
commit | 9b9d80cd97704426e54434d8777c5c15154014ad (patch) | |
tree | 43568e74eda10ad648fa27ac3e6dff9b70157d1c /lib/router.php | |
parent | 209486d3be877d85b3e241797e6042283d0f66d6 (diff) |
Pluginized Twitter settings stuff
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/router.php b/lib/router.php index 08bc0566d..5bffdb16b 100644 --- a/lib/router.php +++ b/lib/router.php @@ -86,10 +86,6 @@ class Router $m->connect('doc/:title', array('action' => 'doc')); - // Twitter - - $m->connect('twitter/authorization', array('action' => 'twitterauthorization')); - // facebook $m->connect('facebook', array('action' => 'facebookhome')); @@ -136,7 +132,7 @@ class Router // settings foreach (array('profile', 'avatar', 'password', 'im', - 'email', 'sms', 'twitter', 'userdesign', 'other') as $s) { + 'email', 'sms', 'userdesign', 'other') as $s) { $m->connect('settings/'.$s, array('action' => $s.'settings')); } |