diff options
author | Zach Copley <zach@status.net> | 2010-03-03 16:47:27 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-03-03 16:49:14 -0800 |
commit | 61de37ec7bfb620288d3bc3b1fcdfb66725f0f99 (patch) | |
tree | 6f96aede2045470452e1504e84552bdbbdc5db5f /lib/router.php | |
parent | 8436306d2872db2d1a50fdaef3cc1f2c8fb0d114 (diff) |
Move snapshot configuration to its own admin panel
Turn on with: $config['admin']['panels'][] = 'snapshot';
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 15f88c959..706120e0b 100644 --- a/lib/router.php +++ b/lib/router.php @@ -651,6 +651,7 @@ class Router $m->connect('admin/paths', array('action' => 'pathsadminpanel')); $m->connect('admin/sessions', array('action' => 'sessionsadminpanel')); $m->connect('admin/sitenotice', array('action' => 'sitenoticeadminpanel')); + $m->connect('admin/snapshot', array('action' => 'snapshotadminpanel')); $m->connect('getfile/:filename', array('action' => 'getfile'), |