summaryrefslogtreecommitdiffstats
path: root/app/views/issues
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-12-03 10:28:08 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-12-03 10:28:08 +0000
commit92a23c05bb71e62426cec2298d90b39fadd0eb52 (patch)
tree87093cc5919c75b4a34392cad6176e9ebf639059 /app/views/issues
parent7d8af70a6362517cab9aa2dc2054fa8dd8581ad8 (diff)
downloadredmine-92a23c05bb71e62426cec2298d90b39fadd0eb52.tar.gz
redmine-92a23c05bb71e62426cec2298d90b39fadd0eb52.zip
Project name format limitation removed (name can now contain any character).
Project identifier maximum length changed from 12 to 20. git-svn-id: http://redmine.rubyforge.org/svn/trunk@949 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r--app/views/issues/_list_simple.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_list_simple.rhtml b/app/views/issues/_list_simple.rhtml
index 517055e3a..eb93f8ea1 100644
--- a/app/views/issues/_list_simple.rhtml
+++ b/app/views/issues/_list_simple.rhtml
@@ -11,7 +11,7 @@
<td class="id">
<%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
</td>
- <td><%= issue.project.name %> - <%= issue.tracker.name %><br />
+ <td><%=h issue.project.name %> - <%= issue.tracker.name %><br />
<%= issue.status.name %> - <%= format_time(issue.updated_on) %></td>
<td class="subject">
<%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %>