]> source.dussan.org Git - redmine.git/commitdiff
Do not show a link to the current annotate or view page (#2367).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 27 Dec 2008 18:10:36 +0000 (18:10 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 27 Dec 2008 18:10:36 +0000 (18:10 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2188 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/repositories/_link_to_functions.rhtml

index 9461c99a80a78577632e0e5e62c8a94f41f8cf70..7737bf4844d9426071d75cf9ed6a2619cb3787af 100644 (file)
@@ -1,9 +1,9 @@
 <p>
 <% if @repository.supports_cat? %>
-    <%= link_to l(:button_view), {:action => 'entry', :id => @project, :path => to_path_param(@path), :rev => @rev } %> |
+    <%= link_to_if action_name != 'entry', l(:button_view), {:action => 'entry', :id => @project, :path => to_path_param(@path), :rev => @rev } %> |
 <% end %>
 <% if @repository.supports_annotate? %>
-    <%= link_to l(:button_annotate), {:action => 'annotate', :id => @project, :path => to_path_param(@path), :rev => @rev } %> |
+    <%= link_to_if action_name != 'annotate', l(:button_annotate), {:action => 'annotate', :id => @project, :path => to_path_param(@path), :rev => @rev } %> |
 <% end %>
 <%= link_to(l(:button_download), {:action => 'entry', :id => @project, :path => to_path_param(@path), :rev => @rev, :format => 'raw' }) if @repository.supports_cat? %>
 <%= "(#{number_to_human_size(@entry.size)})" if @entry.size %>