- fixed smarty_function_html_options call in plugin function.html_select_date.php

This commit is contained in:
Uwe.Tews
2009-06-24 16:27:42 +00:00
parent 581620d8cd
commit 18b939331e
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
06/24/2009
- fixed smarty_function_html_options call in plugin function.html_select_date.php
06/22/2009
- fix on \n and spaces inside smarty tags
- removed request_use_auto_globals propert as it is no longer needed because Smarty 3 will always run under PHP 5

View File

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