4e14ccc74d
Instiki now runs on the Rails 2.3.0 Candidate Release. Among other improvements, this means that it now automagically selects between WEBrick and Mongrel. Just run ./instiki --daemon
16 lines
370 B
Ruby
16 lines
370 B
Ruby
require 'action_controller/cgi_ext/stdinput'
|
|
require 'action_controller/cgi_ext/query_extension'
|
|
require 'action_controller/cgi_ext/cookie'
|
|
|
|
class CGI #:nodoc:
|
|
include ActionController::CgiExt::Stdinput
|
|
|
|
class << self
|
|
alias :escapeHTML_fail_on_nil :escapeHTML
|
|
|
|
def escapeHTML(string)
|
|
escapeHTML_fail_on_nil(string) unless string.nil?
|
|
end
|
|
end
|
|
end
|