projects
/
rails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3aa8ffb
)
Don't include any page numbers in links in the tag list.
author
Tom Hughes
<tom@compton.nu>
Wed, 31 Oct 2007 00:35:27 +0000
(
00:35
+0000)
committer
Tom Hughes
<tom@compton.nu>
Wed, 31 Oct 2007 00:35:27 +0000
(
00:35
+0000)
app/helpers/trace_helper.rb
patch
|
blob
|
history
diff --git
a/app/helpers/trace_helper.rb
b/app/helpers/trace_helper.rb
index a0c3f56c9f44a96ec45a126df921d63eaaf037f9..3922ce2b335e483af82af455710a7f445f0935b1 100644
(file)
--- 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