diff options
author | plegall <plg@piwigo.org> | 2015-12-15 15:24:01 +0100 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2015-12-15 15:24:01 +0100 |
commit | 3282ddbe2ea305edbb0b3ae84b6860c0d90ab072 (patch) | |
tree | 6ba00ec1ae9242e4784fd37eae776ad34de183a3 /include/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php | |
parent | acbdd756cd2a8772b4d0ebfc3ede86e71c6a495a (diff) |
update Smarty to official version 3.1.28
Diffstat (limited to 'include/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php')
-rw-r--r-- | include/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php b/include/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php index 25b35e861..50c25bdb6 100644 --- a/include/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php +++ b/include/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php @@ -206,16 +206,15 @@ class Smarty_Internal_Compile_Private_ForeachSection extends Smarty_Internal_Com */ public static function compileSpecialVariable($args, Smarty_Internal_TemplateCompilerBase $compiler, $parameter) { - // make all lower case - $parameter = array_map('strtolower', $parameter); - $tag = trim($parameter[0], '"\''); - if (!isset($parameter[1]) || false === $name = $compiler->getId($parameter[1])) { + $tag = strtolower(trim($parameter[ 0 ], '"\'')); + $name = isset($parameter[ 1 ]) ? $compiler->getId($parameter[ 1 ]) : false; + if (!$name) { $compiler->trigger_template_error("missing or illegal \$smarty.{$tag} name attribute", null, true); } + /* @var Smarty_Internal_Compile_Foreach|Smarty_Internal_Compile_Section $className */ $className = 'Smarty_Internal_Compile_' . ucfirst($tag); - if ((!isset($parameter[2]) || false === $property = $compiler->getId($parameter[2])) || - !in_array($property, $className::$nameProperties) - ) { + $property = isset($parameter[ 2 ]) ? strtolower($compiler->getId($parameter[ 2 ])) : false; + if (!$property || !in_array($property, $className::$nameProperties)) { $compiler->trigger_template_error("missing or illegal \$smarty.{$tag} property attribute", null, true); } $tagVar = "'__smarty_{$tag}_{$name}'"; |