summaryrefslogtreecommitdiffstats
path: root/app/helpers/queries_helper.rb
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/helpers/queries_helper.rb
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/helpers/queries_helper.rb')
-rw-r--r--app/helpers/queries_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/queries_helper.rb b/app/helpers/queries_helper.rb
index f92787278..3011d3aec 100644
--- a/app/helpers/queries_helper.rb
+++ b/app/helpers/queries_helper.rb
@@ -38,7 +38,7 @@ module QueriesHelper
else
case column.name
when :subject
- ((@project.nil? || @project != issue.project) ? "#{issue.project.name} - " : '') +
+ h((@project.nil? || @project != issue.project) ? "#{issue.project.name} - " : '') +
link_to(h(value), :controller => 'issues', :action => 'show', :id => issue)
when :done_ratio
progress_bar(value, :width => '80px')