mirror of
https://github.com/Mibew/handlebars.php.git
synced 2025-03-23 08:51:23 +03:00
Merge branch 'patch-3' of github.com:ulriklystbaek/handlebars.php
This commit is contained in:
commit
77e71e6543
@ -57,15 +57,23 @@ class IfHelper implements Helper
|
||||
}
|
||||
|
||||
if ($tmp) {
|
||||
$context->push($context->last());
|
||||
|
||||
$template->setStopToken('else');
|
||||
$buffer = $template->render($context);
|
||||
$template->setStopToken(false);
|
||||
$template->discard($context);
|
||||
|
||||
$context->pop();
|
||||
} else {
|
||||
$context->push($context->last());
|
||||
|
||||
$template->setStopToken('else');
|
||||
$template->discard($context);
|
||||
$template->setStopToken(false);
|
||||
$buffer = $template->render($context);
|
||||
|
||||
$context->pop();
|
||||
}
|
||||
|
||||
return $buffer;
|
||||
|
Loading…
Reference in New Issue
Block a user