From 7cb9fdff6a6a86fa37403444705c508ec3de8f13 Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Tue, 3 Mar 2015 10:05:27 -0800 Subject: [PATCH] Never indent block arg sections. Fixes #253 --- src/Mustache/Compiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mustache/Compiler.php b/src/Mustache/Compiler.php index c872df4..860316f 100644 --- a/src/Mustache/Compiler.php +++ b/src/Mustache/Compiler.php @@ -263,7 +263,7 @@ class Mustache_Compiler const BLOCK_ARG = ' // %s block_arg - $value = $this->section%s($context, $indent, true); + $value = $this->section%s($context, \'\', true); $newContext[%s] = %s$value; ';