mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 10:24:26 +02:00
fix class name case
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user