diff options
Diffstat (limited to 'lib/cgi/core.rb')
-rw-r--r-- | lib/cgi/core.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/cgi/core.rb b/lib/cgi/core.rb index 62e606837a..e6c19bbaa5 100644 --- a/lib/cgi/core.rb +++ b/lib/cgi/core.rb @@ -4,12 +4,12 @@ # generating HTTP responses. #++ class CGI - unless const_defined?(:Util) - module Util + unless const_defined?(:Escape) + module Escape @@accept_charset = "UTF-8" # :nodoc: end - include Util - extend Util + include Escape + extend Escape end $CGI_ENV = ENV # for FCGI support |