mirror of
https://github.com/github/rails.git
synced 2026-01-29 16:28:09 -05:00
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:
@@ -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)
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user