diff options
| author | Emilio Tagua <miloops@gmail.com> | 2010-09-28 18:20:54 -0300 |
|---|---|---|
| committer | Emilio Tagua <miloops@gmail.com> | 2010-09-28 18:20:54 -0300 |
| commit | 357f59447d79a09d7a84fa8c2bc7892b5fc02ca9 (patch) | |
| tree | ff59fcfafee1310d3f328522115b3a5cec4a868d | |
| parent | e8041042006eb7cb3253f1bdb38d6e2fe9a785d7 (diff) | |
| download | rails-357f59447d79a09d7a84fa8c2bc7892b5fc02ca9.tar.gz rails-357f59447d79a09d7a84fa8c2bc7892b5fc02ca9.tar.bz2 rails-357f59447d79a09d7a84fa8c2bc7892b5fc02ca9.zip | |
Initialize @path.
| -rw-r--r-- | actionpack/lib/action_view/template/resolver.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template/resolver.rb b/actionpack/lib/action_view/template/resolver.rb index c9e20ca14e..a261e08dbc 100644 --- a/actionpack/lib/action_view/template/resolver.rb +++ b/actionpack/lib/action_view/template/resolver.rb @@ -6,6 +6,7 @@ module ActionView # = Action View Resolver class Resolver def initialize + @path = nil @cached = Hash.new { |h1,k1| h1[k1] = Hash.new { |h2,k2| h2[k2] = Hash.new { |h3, k3| h3[k3] = {} } } } end |
