]> git.openstreetmap.org Git - rails.git/commitdiff
Fixed link to DiaryComments
authorShrey <shrey14099@iiitd.ac.in>
Thu, 16 Jul 2015 18:00:55 +0000 (23:30 +0530)
committerMatt Amos <zerebubuth@gmail.com>
Mon, 22 Aug 2016 15:17:54 +0000 (16:17 +0100)
app/controllers/diary_entry_controller.rb
app/helpers/issues_helper.rb
app/views/diary_entry/view.html.erb

index c0b6ece3843dca44b75a415059815e9c92b3e7bd..ed5a640579b713d4f63683ad824f94cb5b3e04f4 100644 (file)
@@ -152,6 +152,9 @@ class DiaryEntryController < ApplicationController
     @entry = @this_user.diary_entries.visible.where(:id => params[:id]).first
     if @entry
       @title = t "diary_entry.view.title", :user => params[:display_name], :title => @entry.title
+      if params[:comment_id]
+        @reported_comment = DiaryComment.where(id: params[:comment_id])
+      end
     else
       @title = t "diary_entry.no_such_entry.title", :id => params[:id]
       render :action => "no_such_entry", :status => :not_found
index ef9ae20de9626b90ce6c063073636ac9c31a1665..9ecb70e3540295ca5fb2c49f5f43da5251437de2 100644 (file)
@@ -16,7 +16,8 @@ module IssuesHelper
                        link_to "#{reportable.diary_entry.title}, Comment id ##{reportable.id}",        :controller => reportable.diary_entry.class.name.underscore,
                                                                                                                :action => :view,
                                                                                                                :display_name => reportable.diary_entry.user.display_name,
-                                                                                                               :id => reportable.id
+                                                                                                               :id => reportable.diary_entry.id,
+                                                                                                               :comment_id => reportable.id
                when "Changeset"
                        link_to "Changeset ##{reportable.id}, Closed at: #{l(reportable.closed_at.to_datetime, :format => :long)}",             :controller => :browse,
                                                                                                                                                                                                        :action => :changeset,
index d12942a7b9b9f98f8286afde37f359fc6dd5f774..8bc2b64693aa34ecb90339c83d54d46ae8c960ea 100644 (file)
 
 <a id="comments"></a>
 <div class='comments'>
-<%= render :partial => 'diary_comment', :collection => @entry.visible_comments %>
+  <% if @reported_comment %>
+    <%= render :partial => 'diary_comment', :collection => @reported_comment %>
+  <% else %>
+    <%= render :partial => 'diary_comment', :collection => @entry.visible_comments %>
+  <% end %>
 </div>
 <%= if_logged_in(:div) do %>
   <h3 id="newcomment"><%= t 'diary_entry.view.leave_a_comment' %></h3>