fix bug in sitemap_tree which referred to app out of context

This commit is contained in:
Eric Skogen 2011-12-12 12:12:19 -06:00
parent 911fe031bd
commit 99c004d41f

View file

@ -16,7 +16,7 @@ module Middleman::Extensions
if !@sitemap_tree_cache.has_key?(key)
auto_hash = Hash.new{ |h,k| h[k] = Hash.new &h.default_proc }
app.sitemap.all_paths.each do |path|
sitemap.all_paths.each do |path|
next if !regex.nil? && !path.match(regex)
sub = auto_hash
path.split( "/" ).each{ |dir| sub[dir]; sub = sub[dir] }