diff --git a/change_log.txt b/change_log.txt index 6f56f767..3432fe47 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,6 @@ +07/01/2009 +- fixed smarty_function_html_options call in plugin function.html_select_date.php (missing ,) + 06/24/2009 - fixed smarty_function_html_options call in plugin function.html_select_date.php diff --git a/libs/plugins/function.html_select_date.php b/libs/plugins/function.html_select_date.php index e1b856c8..3644b5b6 100644 --- a/libs/plugins/function.html_select_date.php +++ b/libs/plugins/function.html_select_date.php @@ -252,7 +252,7 @@ function smarty_function_html_select_date($params, $smarty, $template) 'values' => $day_values, 'selected' => $time[2], 'print_result' => false), - $smarty $template); + $smarty, $template); $day_result .= ''; }