diff options
author | Yehuda Katz <wycats@Yehuda-Katz.local> | 2009-11-28 21:36:58 -0800 |
---|---|---|
committer | Yehuda Katz <wycats@Yehuda-Katz.local> | 2009-11-28 21:36:58 -0800 |
commit | 45d8ff08a449d694f33e42ec2f97515d790e3cf7 (patch) | |
tree | 0b9c64442c43e3f47136ba907cec644f29b05f81 /actionpack | |
parent | 4f2a04cc085b9117e8af8079a95a063f671d7a3d (diff) | |
download | rails-45d8ff08a449d694f33e42ec2f97515d790e3cf7.tar.gz rails-45d8ff08a449d694f33e42ec2f97515d790e3cf7.tar.bz2 rails-45d8ff08a449d694f33e42ec2f97515d790e3cf7.zip |
Remove reference to class that doesn't exist (ht: brynary)
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb index e95e84aeb5..f6f7ec0c8c 100644 --- a/actionpack/lib/action_view.rb +++ b/actionpack/lib/action_view.rb @@ -25,7 +25,7 @@ require File.join(File.dirname(__FILE__), "action_pack") module ActionView def self.load_all! - [Context, Base, InlineTemplate, TemplateError] + [Context, Base, TemplateError] end autoload :Base, 'action_view/base' |