diff --git a/library/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php b/library/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php new file mode 100644 --- /dev/null +++ b/library/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php @@ -0,0 +1,37 @@ +getAttributes($compiler, $args); + if ($_attr['nocache'] === true) { + $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno); + } + // this tag does not return compiled code + $compiler->has_code = true; + + return $compiler->smarty->left_delimiter; + } +}