From 7bae55dd3943907716166cef5bd8f6757e7664e5 Mon Sep 17 00:00:00 2001 From: Mike Angell Date: Wed, 28 Aug 2019 19:22:40 +1000 Subject: [PATCH] Bugfix for new Liquid tag --- lib/liquid/tags/echo.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/liquid/tags/echo.rb b/lib/liquid/tags/echo.rb index acb9ab4..d3d30e3 100644 --- a/lib/liquid/tags/echo.rb +++ b/lib/liquid/tags/echo.rb @@ -16,7 +16,7 @@ module Liquid end def render(context) - @variable.render(context) + @variable.render_to_output_buffer(context, '') end end