diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-04 11:36:50 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-04 11:36:50 +0000 |
commit | 3791cda0bb2f35a1f8d57b90600efbff15bfec6d (patch) | |
tree | 07eed5a54e7e19b5f2d064c571189c70fc75d4aa /mod | |
parent | 64a0e05c9249dc9e23964452419963fcdbdc0ca2 (diff) | |
download | elgg-3791cda0bb2f35a1f8d57b90600efbff15bfec6d.tar.gz elgg-3791cda0bb2f35a1f8d57b90600efbff15bfec6d.tar.bz2 |
Fixes #3305 switched default and alt sections for footer menu
git-svn-id: http://code.elgg.org/elgg/trunk@8934 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/externalpages/start.php | 1 | ||||
-rw-r--r-- | mod/reportedcontent/start.php | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/mod/externalpages/start.php b/mod/externalpages/start.php index 97df4fb5b..696b617da 100644 --- a/mod/externalpages/start.php +++ b/mod/externalpages/start.php @@ -29,7 +29,6 @@ function expages_setup_footer_menu() { foreach ($pages as $page) { $url = "expages/read/$page"; $item = new ElggMenuItem($page, elgg_echo("expages:$page"), $url); - $item->setSection('alt'); elgg_register_menu_item('footer', $item); } } diff --git a/mod/reportedcontent/start.php b/mod/reportedcontent/start.php index 406624e50..87b4b3c7b 100644 --- a/mod/reportedcontent/start.php +++ b/mod/reportedcontent/start.php @@ -31,6 +31,7 @@ function reportedcontent_init() { 'title' => elgg_echo('reportedcontent:this:tooltip'), 'text' => elgg_view_icon('report-this') . elgg_echo('reportedcontent:this'), 'priority' => 500, + 'section' => 'alt', )); } |