From 04c9de847f783d46bdc32a051c74896cab70ce5e Mon Sep 17 00:00:00 2001 From: albert Date: Sun, 17 Mar 2013 22:17:42 -0400 Subject: [PATCH] fixes #899 --- app/views/layouts/_main_links.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/layouts/_main_links.html.erb b/app/views/layouts/_main_links.html.erb index d0944c6e9..c26700a23 100644 --- a/app/views/layouts/_main_links.html.erb +++ b/app/views/layouts/_main_links.html.erb @@ -7,8 +7,6 @@ <%= nav_link_to("Posts", posts_path) %> <%= nav_link_to("Comments", comments_path(:group_by => "post")) %> <%= nav_link_to("Notes", notes_path(:group_by => "post")) %> - <%= nav_link_to("Wiki", wiki_pages_path(:title => "help:home")) %> - <%= nav_link_to("Forum", forum_topics_path, :class => (CurrentUser.user.has_forum_been_updated? ? "forum-updated" : nil)) %> <%= nav_link_to("Artists", artists_path(:search => {:order => "date"})) %> <%= nav_link_to("Tags", tags_path(:search => {:order => "date"})) %> <% if CurrentUser.is_moderator? %> @@ -16,6 +14,8 @@ <%= nav_link_to("Implications", tag_implications_path) %> <% end %> <%= nav_link_to("Pools", pools_path) %> + <%= nav_link_to("Wiki", wiki_pages_path(:title => "help:home")) %> + <%= nav_link_to("Forum", forum_topics_path, :class => (CurrentUser.user.has_forum_been_updated? ? "forum-updated" : nil)) %> <% if CurrentUser.is_janitor? %> <%= nav_link_to("Dashboard", moderator_dashboard_path) %> <% end %>