diff --git a/app/views/bulk_update_requests/_listing.html.erb b/app/views/bulk_update_requests/_listing.html.erb
index 7ee8c317d..7119a27b7 100644
--- a/app/views/bulk_update_requests/_listing.html.erb
+++ b/app/views/bulk_update_requests/_listing.html.erb
@@ -15,7 +15,9 @@
<%= link_to_user(request.user) %> |
<% if request.approver %><%= link_to_user(request.approver) %><% end %> |
- <% if request.forum_topic_id %>
+ <% if request.forum_post_id %>
+ <%= link_to(request.forum_topic_id, forum_topic_path(request.forum_topic_id, page: request.forum_post.forum_topic_page, :anchor => "forum_post_#{request.forum_post.id}")) %>
+ <% elsif request.forum_topic_id %>
<%= link_to(request.forum_topic_id, forum_topic_path(request.forum_topic_id)) %>
<% end %>
|