X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5a2ffa227c99a271366735fa43a02ef93b99a673..6de8c2e6b30485683a9d3aa3e21c4b256fe399bd:/app/views/trace/view.html.erb
diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb
index bfef5d901..5a7c5bcc6 100644
--- a/app/views/trace/view.html.erb
+++ b/app/views/trace/view.html.erb
@@ -1,6 +1,6 @@
<%= t 'trace.view.heading', :name => h(@trace.name) %>
-<% if OSM_STATUS != :gpx_offline %>
+<% if STATUS != :gpx_offline %>
<% if @trace.inserted %>
<% else %>
@@ -38,7 +38,7 @@
<%= t'trace.view.tags' %> |
<% unless @trace.tags.empty? %>
- <%= @trace.tags.collect { |tag| link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ") %>
+ <%= raw(@trace.tags.collect { |tag| link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ")) %>
<% else %>
<%= t'trace.view.none' %>
<% end %>
@@ -52,7 +52,7 @@
-<% if_user(@trace.user) do %>
+<%= if_user(@trace.user) do %>
<%= button_to t('trace.view.edit_track'), :controller => 'trace', :action => 'edit', :id => @trace.id %> |
|