瀏覽代碼

Ruby 1.9: set Encoding.default_external = 'UTF-8' (#4050).

Without this setting, Redmine cannot boot on Japanese Windows
nor on non UTF-8 locale Linux (e.g. LANG=en_US.ISO-8859-1).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6461 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.3.0
Toshi MARUYAMA 13 年之前
父節點
當前提交
bbb6048f65
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. 4
    0
      config/environment.rb

+ 4
- 0
config/environment.rb 查看文件

@@ -7,6 +7,10 @@
# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.3.11' unless defined? RAILS_GEM_VERSION

if RUBY_VERSION >= '1.9'
Encoding.default_external = 'UTF-8'
end

# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')


Loading…
取消
儲存