summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-11-18 10:10:09 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-11-18 10:10:09 +0000
commitaa45516a026f9d48395fca3c0468b5befc63c36a (patch)
treebbd50fc8a4120a8f43f796fb6d1f4f3b99e8f1b0 /app/views/projects
parent3cf6a56b9703f8e763371e3bbe27207621f884de (diff)
downloadredmine-aa45516a026f9d48395fca3c0468b5befc63c36a.tar.gz
redmine-aa45516a026f9d48395fca3c0468b5befc63c36a.zip
Fixed that repository identifier may not be displayed in project settings (#12332).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10837 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/settings/_repositories.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/settings/_repositories.html.erb b/app/views/projects/settings/_repositories.html.erb
index 37e008bd2..4492165c9 100644
--- a/app/views/projects/settings/_repositories.html.erb
+++ b/app/views/projects/settings/_repositories.html.erb
@@ -14,7 +14,7 @@
<tr class="<%= cycle 'odd', 'even' %>">
<td>
<%= link_to repository.identifier,
- {:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier_param.present? %>
+ {:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier.present? %>
</td>
<td align="center"><%= checked_image repository.is_default? %></td>
<td><%=h repository.scm_name %></td>