fix class name case

This commit is contained in:
uwetews
2016-03-09 04:01:47 +01:00
parent 23acdf722c
commit 5c1907052e

View File

@@ -1869,10 +1869,10 @@ class Smarty_Internal_Templateparser
$j = strrpos($this->yystack[ $this->yyidx + 0 ]->minor, '.');
if ($this->yystack[ $this->yyidx + 0 ]->minor[ $j + 1 ] == 'c') {
// {$smarty.block.child}
$this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileChildBlock($this->compiler);
$this->_retvalue = Smarty_Internal_Compile_Block::compileChildBlock($this->compiler);
} else {
// {$smarty.block.parent}
$this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileParentBlock($this->compiler);
$this->_retvalue = Smarty_Internal_Compile_Block::compileParentBlock($this->compiler);
}
}