From 1de789820063f2dd6e73f5bc348df651e775afaf Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Wed, 18 May 2016 21:48:17 -0700 Subject: [PATCH] Fix incorrect method name case. --- 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 76e580c..c400c3b 100644 --- a/src/Mustache/Compiler.php +++ b/src/Mustache/Compiler.php @@ -456,7 +456,7 @@ class Mustache_Compiler const PARENT = ' %s - if ($parent = $this->mustache->LoadPartial(%s)) { + if ($parent = $this->mustache->loadPartial(%s)) { $context->pushBlockContext($newContext); $buffer .= $parent->renderInternal($context, $indent); $context->popBlockContext();