diff options
author | Sam Ruby <rubys@intertwingly.net> | 2010-05-08 11:23:41 -0400 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-05-08 17:55:51 +0200 |
commit | 788684d75a7102107c0d99e5cb32a11a610f628f (patch) | |
tree | 1f7310f730bca24aa86aee0bb7493087a803dda4 | |
parent | 6626833db13a69786f9f6cd56b9f53c4017c3e39 (diff) | |
download | rails-788684d75a7102107c0d99e5cb32a11a610f628f.tar.gz rails-788684d75a7102107c0d99e5cb32a11a610f628f.tar.bz2 rails-788684d75a7102107c0d99e5cb32a11a610f628f.zip |
get the rescue error page back [#4536 state:resolved]
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb b/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb index 2493095a04..db17bb348a 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb @@ -10,7 +10,7 @@ module ActiveRecord ## # :singleton-method: # The connection handler - class_inheritable_accessor :connection_handler, :instance_writer => false + class_attribute :connection_handler, :instance_writer => false self.connection_handler = ConnectionAdapters::ConnectionHandler.new # Returns the connection currently associated with the class. This can |