From d96f39360b80d3f59425fd011c25b97bb499ccfc Mon Sep 17 00:00:00 2001 From: Anatol Broder Date: Thu, 8 May 2014 07:42:47 +0200 Subject: [PATCH] Revert "Make it fail" This reverts commit c89e7539b86a483a2f8b14dd766ad90da1eb9773. --- lib/jekyll/filters.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll/filters.rb b/lib/jekyll/filters.rb index 0478eeff..50cfea48 100644 --- a/lib/jekyll/filters.rb +++ b/lib/jekyll/filters.rb @@ -252,7 +252,7 @@ module Jekyll end def hash_property(hash, property) - return hash[property] + return item_property(hash, property) if hash.respond_to?('[]'.freeze) hash[property] elsif hash.respond_to?(property)