diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zorglub/node.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/zorglub/node.rb b/lib/zorglub/node.rb index 68e535b..c85e42d 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -121,9 +121,11 @@ module Zorglub @content = self.send @options[:method], *@options[:args] v, l, e = view, layout, Config.engine_proc(@options[:engine]) state (@options[:layout].nil? ? :partial : :view) - @content, @mime = e.call v, self if e and File.exists? v + @content, mime = e.call v, self if e and File.exists? v + @mime = mime unless mime.nil? state :layout - @content, @mime = e.call l, self if e and File.exists? l + @content, mime = e.call l, self if e and File.exists? l + @mime = mime unless mime.nil? state :post_cb Node.call_after_hooks self state :finished |