mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-02 21:31:48 +01:00
- performance store flag for already required shared plugin functions in static variable or
Smarty's $_cache to improve performance when plugins are often called
51e0d5cd40 (commitcomment-22280086)
This commit is contained in:
@@ -45,8 +45,9 @@
|
||||
*/
|
||||
function smarty_function_html_radios($params, $template)
|
||||
{
|
||||
if (!is_callable('smarty_function_escape_special_chars')) {
|
||||
if (!isset($template->smarty->_cache[ '_required_sesc' ])) {
|
||||
require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php');
|
||||
$template->smarty->_cache[ '_required_sesc' ] = true;
|
||||
}
|
||||
|
||||
$name = 'radio';
|
||||
|
||||
Reference in New Issue
Block a user