From b288d014f462d71c19432dd41442a5b45de1f921 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Wed, 1 Jul 2009 20:19:04 +0000 Subject: [PATCH] - fixed smarty_function_html_options call in plugin function.html_select_date.php (missing ,) --- change_log.txt | 3 +++ libs/plugins/function.html_select_date.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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 .= ''; }