]> git.openstreetmap.org Git - rails.git/commitdiff
Avoid warning.
authorTom Hughes <tom@compton.nu>
Sun, 23 Sep 2007 16:54:48 +0000 (16:54 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 23 Sep 2007 16:54:48 +0000 (16:54 +0000)
app/helpers/trace_helper.rb

index 1611b79adfa9bd378f2ded267f50b51f35328ff7..a0c3f56c9f44a96ec45a126df921d63eaaf037f9 100644 (file)
@@ -1,9 +1,9 @@
 module TraceHelper
   def link_to_tag(tag)
     if @action == "mine"
-      return link_to tag, :tag => tag
+      return link_to(tag, :tag => tag)
     else
-      return link_to tag, :tag => tag, :display_name => @display_name
+      return link_to(tag, :tag => tag, :display_name => @display_name)
     end
   end
 end