diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-22 19:43:33 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-22 19:43:33 +0000 |
commit | 8eda97c458040614c52f3a63295da6db6fb2cfb5 (patch) | |
tree | 54f767392b4ad2d4fc74af12550dd4464a838e69 | |
parent | 11792cc0394ae34aa8404a2c4335b64fea41a315 (diff) | |
download | elgg-8eda97c458040614c52f3a63295da6db6fb2cfb5.tar.gz elgg-8eda97c458040614c52f3a63295da6db6fb2cfb5.tar.bz2 |
moved commented list pages to pages/lists/
-rw-r--r-- | pages/lists/mostcommentedimages.php (renamed from mostcommentedimages.php) | 0 | ||||
-rw-r--r-- | pages/lists/mostcommentedimagesthismonth.php (renamed from mostcommentedimagesthismonth.php) | 0 | ||||
-rw-r--r-- | pages/lists/mostcommentedimagestoday.php (renamed from mostcommentedimagestoday.php) | 0 | ||||
-rw-r--r-- | pages/lists/recentlycommented.php (renamed from recentlycommented.php) | 0 | ||||
-rw-r--r-- | start.php | 10 |
5 files changed, 5 insertions, 5 deletions
diff --git a/mostcommentedimages.php b/pages/lists/mostcommentedimages.php index b3a36a9ac..b3a36a9ac 100644 --- a/mostcommentedimages.php +++ b/pages/lists/mostcommentedimages.php diff --git a/mostcommentedimagesthismonth.php b/pages/lists/mostcommentedimagesthismonth.php index c47cee2da..c47cee2da 100644 --- a/mostcommentedimagesthismonth.php +++ b/pages/lists/mostcommentedimagesthismonth.php diff --git a/mostcommentedimagestoday.php b/pages/lists/mostcommentedimagestoday.php index 066feb45e..066feb45e 100644 --- a/mostcommentedimagestoday.php +++ b/pages/lists/mostcommentedimagestoday.php diff --git a/recentlycommented.php b/pages/lists/recentlycommented.php index bfb64981d..bfb64981d 100644 --- a/recentlycommented.php +++ b/pages/lists/recentlycommented.php @@ -196,10 +196,10 @@ add_submenu_item(elgg_echo('tidypics:mostviewedthismonth'), $CONFIG->url . "mod/tidypics/mostviewedimagesthismonth.php");
add_submenu_item(elgg_echo('tidypics:mostviewedlastmonth'), $CONFIG->url . "mod/tidypics/mostviewedimageslastmonth.php");
add_submenu_item(elgg_echo('tidypics:mostviewedtoday'), $CONFIG->url . "mod/tidypics/mostviewedimagestoday.php");
- add_submenu_item(elgg_echo('tidypics:mostcommented'), $CONFIG->url . "mod/tidypics/mostcommentedimages.php");
- add_submenu_item(elgg_echo('tidypics:mostcommentedthismonth'), $CONFIG->url . "mod/tidypics/mostcommentedimagesthismonth.php");
- add_submenu_item(elgg_echo('tidypics:mostcommentedtoday'), $CONFIG->url . "mod/tidypics/mostcommentedimagestoday.php");
- add_submenu_item(elgg_echo('tidypics:recentlycommented'), $CONFIG->wwwroot . 'mod/tidypics/recentlycommented');
+ add_submenu_item(elgg_echo('tidypics:mostcommented'), $CONFIG->url . "mod/tidypics/pages/lists/mostcommentedimages.php");
+ add_submenu_item(elgg_echo('tidypics:mostcommentedthismonth'), $CONFIG->url . "mod/tidypics/pages/lists/mostcommentedimagesthismonth.php");
+ add_submenu_item(elgg_echo('tidypics:mostcommentedtoday'), $CONFIG->url . "mod/tidypics/pages/lists/mostcommentedimagestoday.php");
+ add_submenu_item(elgg_echo('tidypics:recentlycommented'), $CONFIG->wwwroot . 'mod/tidypics/pages/lists/recentlycommented');
}
/**
* Sets up tidypics admin menu. Triggered on pagesetup.
@@ -317,7 +317,7 @@ case "recentlycommented":
if (isset($page[1])) set_input('guid',$page[1]);
- include($CONFIG->pluginspath . "tidypics/recentlycommented.php");
+ include($CONFIG->pluginspath . "tidypics/pages/lists/recentlycommented.php");
break;
case "highestrated":
|