diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-06-08 00:16:53 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-06-08 00:16:53 +0000 |
commit | e6f2aab29afb89bc07ff8bd867a9c69f85f1eb21 (patch) | |
tree | dfea3aee76eabf1b1ed2942d6eec6c7c33438758 /start.php | |
parent | 0db39bf5f812ed0fbfcfc06f482f27c3aa18cd2b (diff) | |
download | elgg-e6f2aab29afb89bc07ff8bd867a9c69f85f1eb21.tar.gz elgg-e6f2aab29afb89bc07ff8bd867a9c69f85f1eb21.tar.bz2 |
using the page handler for the admin page
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -203,7 +203,7 @@ function tidypics_adminmenu() { global $CONFIG; if (get_context() == 'admin' && isadminloggedin()) { - add_submenu_item(elgg_echo('tidypics:administration'), $CONFIG->url . "mod/tidypics/pages/admin.php"); + add_submenu_item(elgg_echo('tidypics:administration'), $CONFIG->url . "pg/photos/admin/"); } } @@ -365,6 +365,10 @@ function tidypics_page_handler($page) { } include($CONFIG->pluginspath . "tidypics/pages/flickr/setup.php"); break; + + case "admin": + include ($CONFIG->pluginspath . "tidypics/pages/admin.php"); + break; } } else { |