From 42a49792aab65837aa4cd3bc3759e25a622dec48 Mon Sep 17 00:00:00 2001 From: messju Date: Tue, 18 Mar 2003 21:04:13 +0000 Subject: [PATCH] fixed label for optgroup in html_options --- libs/plugins/function.html_options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/plugins/function.html_options.php b/libs/plugins/function.html_options.php index 11d3eb77..04f84981 100644 --- a/libs/plugins/function.html_options.php +++ b/libs/plugins/function.html_options.php @@ -89,7 +89,7 @@ function smarty_function_html_options_optoutput($key, $value, $selected) { } function smarty_function_html_options_optgroup($key, $values, $selected) { - $optgroup_html = '' . "\n"; + $optgroup_html = '' . "\n"; foreach ($values as $key => $value) { $optgroup_html .= smarty_function_html_options_optoutput($key, $value, $selected); }