mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 18:34:27 +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, '.');
|
$j = strrpos($this->yystack[ $this->yyidx + 0 ]->minor, '.');
|
||||||
if ($this->yystack[ $this->yyidx + 0 ]->minor[ $j + 1 ] == 'c') {
|
if ($this->yystack[ $this->yyidx + 0 ]->minor[ $j + 1 ] == 'c') {
|
||||||
// {$smarty.block.child}
|
// {$smarty.block.child}
|
||||||
$this->_retvalue = SMARTY_INTERNAL_COMPILE_BLOCK::compileChildBlock($this->compiler);
|
$this->_retvalue = Smarty_Internal_Compile_Block::compileChildBlock($this->compiler);
|
||||||
} else {
|
} else {
|
||||||
// {$smarty.block.parent}
|
// {$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