scm: do not display 'View revision' links in subversion if path or revision are nil (#7984).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5219 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
023a0efa10
commit
69311c9d2f
|
@ -23,7 +23,11 @@
|
|||
<% if @repository.supports_all_revisions? %>
|
||||
<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project %>
|
||||
<% end %>
|
||||
<% if @repository.supports_directory_revisions? %>
|
||||
<%
|
||||
has_branches = (!@repository.branches.nil? && @repository.branches.length > 0)
|
||||
if @repository.supports_directory_revisions? &&
|
||||
( has_branches || !@path.blank? || !@rev.blank? )
|
||||
%>
|
||||
|
|
||||
<%= link_to l(:label_view_revisions),
|
||||
:action => 'changes',
|
||||
|
|
Loading…
Reference in New Issue