X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/52e5fa6ad78f375cec5a207a123a4aa3939c8ddf..3d7eb387a7c3573f1a1d17df00adcaa1fb9b9fa5:/app/views/browse/note.html.erb?ds=sidebyside
diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb
index 59c96c4aa..12de1114f 100644
--- a/app/views/browse/note.html.erb
+++ b/app/views/browse/note.html.erb
@@ -11,18 +11,18 @@
<%= t "browse.note.opened" %> |
- <%= t "browse.note.at_by", :when => friendly_date(@note.created_at), :user => note_author(@note) %> |
+ <%= t "browse.note.at_by_html", :when => friendly_date(@note.created_at), :user => note_author(@note) %> |
<% if @note.status == "closed" %>
<%= t "browse.note.closed" %> |
- <%= t "browse.note.at_by", :when => friendly_date(@note.closed_at), :user => note_author(@note.comments.last) %> |
+ <%= t "browse.note.at_by_html", :when => friendly_date(@note.closed_at), :user => note_author(@note.comments.last) %> |
<% elsif @note.comments.length > 1 %>
<%= t "browse.note.last_modified" %> |
- <%= t "browse.note.at_by", :when => friendly_date(@note.updated_at), :user => note_author(@note.comments.last) %> |
+ <%= t "browse.note.at_by_html", :when => friendly_date(@note.updated_at), :user => note_author(@note.comments.last) %> |
<% end %>
@@ -33,7 +33,7 @@
<%= t "browse.node_details.coordinates" %> |
- <%= link_to ("#{number_with_delimiter(@note.lat)}, #{number_with_delimiter(@note.lon)}"), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %> |
+ <%= link_to ("#{number_with_delimiter(@note.lat)}, #{number_with_delimiter(@note.lon)}".html_safe), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %> |
<% if @note.comments.length > 1 %>
@@ -44,9 +44,8 @@
<% @note.comments[1..-1].each do |comment| %>
- <%= h(comment.body) %>
-
- <%= t "browse.note.at_by", :when => friendly_date(comment.created_at), :user => note_author(comment) %>
+ <%= comment.body.to_html %>
+ <%= t "browse.note.at_by_html", :when => friendly_date(comment.created_at), :user => note_author(comment) %>
|
<% end %>