Fix Syntax problems which were preventing webrick from starting

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3508 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski
2006-02-01 03:54:37 +00:00
parent 59d29811c5
commit e398045774
2 changed files with 2 additions and 2 deletions

View File

@@ -523,7 +523,7 @@ module ActionController #:nodoc:
# ActiveRecord::Observer will mark this class as reloadable even though it should be
def self.included_modules(include_super = true)
super - [ Reloadable ]
super() - [ Reloadable ]
end
def before(controller)

View File

@@ -67,7 +67,7 @@ class CGI
class << self
# Don't try to reload ARStore::Session in dev mode.
def included_modules(include_super = true)
super - [ Reloadable ]
super() - [ Reloadable ]
end
# Don't try to reload ARStore::Session in dev mode.