summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-11-13 13:56:20 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-11-13 13:56:20 +0000
commit3511292a177ad4b0121ebdfe8342f6dc9809c82a (patch)
tree31a3d7984159e0e7c9fc8420be6f7b6b0387d13b /app
parentc54b33ddca34c7a82538067b5d92935304f0f944 (diff)
downloadredmine-3511292a177ad4b0121ebdfe8342f6dc9809c82a.tar.gz
redmine-3511292a177ad4b0121ebdfe8342f6dc9809c82a.zip
Ruby 1.9: add "encoding: utf-8" header at application_helper.rb
Following error raises in case that time log has non ASCII comments. <pre> ActionView::TemplateError (incompatible character encodings: UTF-8 and ASCII-8BIT) on line #5 of app/views/timelog/index.html.erb: 3: </div> 4: 5: <%= render_timelog_breadcrumb %> 6: 7: <h2><%= l(:label_spent_time) %></h2> app/helpers/application_helper.rb:407:in `join' app/helpers/application_helper.rb:407:in `breadcrumb' app/helpers/timelog_helper.rb:32:in `render_timelog_breadcrumb' app/views/timelog/index.html.erb:5 </pre> git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7803 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/helpers/application_helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 73d62ca77..b037e72c8 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -1,3 +1,5 @@
+# encoding: utf-8
+#
# Redmine - project management software
# Copyright (C) 2006-2011 Jean-Philippe Lang
#