- fixed smarty_function_html_options call in plugin function.html_select_date.php (missing ,)

This commit is contained in:
Uwe.Tews
2009-07-01 20:19:04 +00:00
parent 18b939331e
commit b288d014f4
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
07/01/2009
- fixed smarty_function_html_options call in plugin function.html_select_date.php (missing ,)
06/24/2009 06/24/2009
- fixed smarty_function_html_options call in plugin function.html_select_date.php - fixed smarty_function_html_options call in plugin function.html_select_date.php

View File

@@ -252,7 +252,7 @@ function smarty_function_html_select_date($params, $smarty, $template)
'values' => $day_values, 'values' => $day_values,
'selected' => $time[2], 'selected' => $time[2],
'print_result' => false), 'print_result' => false),
$smarty $template); $smarty, $template);
$day_result .= '</select>'; $day_result .= '</select>';
} }