diff --git a/app/views/forum_topics/_secondary_links.html.erb b/app/views/forum_topics/_secondary_links.html.erb
index 4d00e50f2..7b5f92664 100644
--- a/app/views/forum_topics/_secondary_links.html.erb
+++ b/app/views/forum_topics/_secondary_links.html.erb
@@ -13,13 +13,13 @@
<% if CurrentUser.is_member? && @forum_topic && !@forum_topic.new_record? %>
|
<%= link_to "Reply", new_forum_post_path(:topic_id => @forum_topic.id) %>
+ <% if @forum_topic.user_subscription(CurrentUser.user) %>
+ <%= link_to "Unsubscribe", unsubscribe_forum_topic_path(@forum_topic), :method => :post %>
+ <% else %>
+ <%= link_to "Subscribe", subscribe_forum_topic_path(@forum_topic), :method => :post, :data => {:confirm => "Are you sure you want to receive email notifications for this forum topic?"} %>
+ <% end %>
<% if !@forum_topic.new_record? && @forum_topic.editable_by?(CurrentUser.user) %>
<%= link_to "Edit", edit_forum_topic_path(@forum_topic) %>
- <% if @forum_topic.user_subscription(CurrentUser.user) %>
- <%= link_to "Unsubscribe", unsubscribe_forum_topic_path(@forum_topic), :method => :post %>
- <% else %>
- <%= link_to "Subscribe", subscribe_forum_topic_path(@forum_topic), :method => :post, :data => {:confirm => "Are you sure you want to receive email notifications for this forum topic?"} %>
- <% end %>
<% if CurrentUser.is_janitor? %>
<% if @forum_topic.is_deleted? %>
<%= link_to "Undelete", undelete_forum_topic_path(@forum_topic), :method => :post %>