From: Tom Hughes Date: Wed, 31 Oct 2007 00:35:27 +0000 (+0000) Subject: Don't include any page numbers in links in the tag list. X-Git-Tag: live~8059 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/714fc42d8eb4cafe860c90ec23172b362ad197af Don't include any page numbers in links in the tag list. --- diff --git a/app/helpers/trace_helper.rb b/app/helpers/trace_helper.rb index a0c3f56c9..3922ce2b3 100644 --- a/app/helpers/trace_helper.rb +++ b/app/helpers/trace_helper.rb @@ -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, :page => nil) else - return link_to(tag, :tag => tag, :display_name => @display_name) + return link_to(tag, :tag => tag, :display_name => @display_name, :page => nil) end end end