diff options
author | Zach Copley <zach@status.net> | 2009-11-19 15:02:25 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-19 15:02:25 -0800 |
commit | 8618b064e226e7a2ff16627eaa2a76906ac64176 (patch) | |
tree | 5a8380c4cd574d19c73df6ec01443aaf844ec575 /lib/router.php | |
parent | 8971a12f89ad161bfaea6a5b938ee2bb4b2bf8c5 (diff) |
Added a user admin panel
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/router.php b/lib/router.php index afe36f712..d5101826f 100644 --- a/lib/router.php +++ b/lib/router.php @@ -590,9 +590,11 @@ class Router $m->connect('admin/site', array('action' => 'siteadminpanel')); $m->connect('admin/design', array('action' => 'designadminpanel')); + $m->connect('admin/user', array('action' => 'useradminpanel')); $m->connect('admin/paths', array('action' => 'pathsadminpanel')); + $m->connect('getfile/:filename', array('action' => 'getfile'), array('filename' => '[A-Za-z0-9._-]+')); |