diff --git a/data/class/SC_View.php b/data/class/SC_View.php index 9ef9c38130..24377ede7f 100644 --- a/data/class/SC_View.php +++ b/data/class/SC_View.php @@ -295,8 +295,8 @@ public function debug($var = true) */ public function lower_compatibility_smarty($tpl_source, $smarty) { - $pattern = ["/\|smarty:nodefaults/", '/include_php /', '/=`(.+?)`/']; - $replace = [' ', 'include_php_ex ', '=$1']; + $pattern = ["/\|smarty:nodefaults/", '/include_php /', '/=`(.+?)`/', '/html_checkboxes_ex /', '/html_radios_ex /']; + $replace = [' ', 'include_php_ex ', '=$1', 'html_checkboxes ', 'html_radios ']; return preg_replace($pattern, $replace, $tpl_source); }