]> source.dussan.org Git - redmine.git/commitdiff
Rails3: view: use html_safe for :text_project_identifier_info at projects/_form.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 30 Sep 2011 00:57:18 +0000 (00:57 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 30 Sep 2011 00:57:18 +0000 (00:57 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7546 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/projects/_form.html.erb

index 885948bb572fa5e641ac96d127a8f44d10d9d64b..0e8978519b2a670ab65c70c9f335439c765f0160 100644 (file)
@@ -11,7 +11,7 @@
 <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p>
 <p><%= f.text_field :identifier, :required => true, :size => 60, :disabled => @project.identifier_frozen? %>
 <% unless @project.identifier_frozen? %>
-<br /><em><%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info) %></em>
+<br /><em><%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info).html_safe %></em>
 <% end %></p>
 <p><%= f.text_field :homepage, :size => 60 %></p>
 <p><%= f.check_box :is_public %></p>