diff --git a/libs/plugins/function.html_select_date.php b/libs/plugins/function.html_select_date.php index 94ba9229..59717971 100644 --- a/libs/plugins/function.html_select_date.php +++ b/libs/plugins/function.html_select_date.php @@ -202,7 +202,9 @@ function smarty_function_html_select_date($params, &$smarty) break; } // Add the field seperator - $html_result .= $field_separator; + if($i != 2) { + $html_result .= $field_separator; + } } print $html_result; diff --git a/plugins/function.html_select_date.php b/plugins/function.html_select_date.php index 94ba9229..59717971 100644 --- a/plugins/function.html_select_date.php +++ b/plugins/function.html_select_date.php @@ -202,7 +202,9 @@ function smarty_function_html_select_date($params, &$smarty) break; } // Add the field seperator - $html_result .= $field_separator; + if($i != 2) { + $html_result .= $field_separator; + } } print $html_result;