fix strict mode in context::get

This commit is contained in:
fzerorubigd 2012-11-10 15:46:26 +03:30
parent 4c2573ffc2
commit d99f9a7830

View File

@ -138,7 +138,7 @@ class Handlebars_Context
if (is_string($current) and $current == '') {
return $current;
}
$current = $this->_findVariableInContext($current, $chunk);
$current = $this->_findVariableInContext($current, $chunk, $strict);
}
}
return $current;