fixed logic so this works right when field_separator = "/"

This commit is contained in:
mohrt
2002-04-15 14:56:38 +00:00
parent d788c4d845
commit aa2e6890cb
2 changed files with 6 additions and 2 deletions

View File

@@ -202,7 +202,9 @@ function smarty_function_html_select_date($params, &$smarty)
break; break;
} }
// Add the field seperator // Add the field seperator
$html_result .= $field_separator; if($i != 2) {
$html_result .= $field_separator;
}
} }
print $html_result; print $html_result;

View File

@@ -202,7 +202,9 @@ function smarty_function_html_select_date($params, &$smarty)
break; break;
} }
// Add the field seperator // Add the field seperator
$html_result .= $field_separator; if($i != 2) {
$html_result .= $field_separator;
}
} }
print $html_result; print $html_result;