Skip to content

Commit

Permalink
Fix inconsistent use of numeric vs text month in date filter
Browse files Browse the repository at this point in the history
The selection list now uses full-text months consistently across the
filter page

Fixes #15257
  • Loading branch information
dregad committed Dec 4, 2012
1 parent efbfd05 commit 0a78482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/date_api.php
Expand Up @@ -251,7 +251,7 @@ function print_date_selection_set( $p_name, $p_format, $p_date = 0, $p_default_d
if( strcmp( $t_char, "m" ) == 0 ) {
echo "<select ", helper_get_tab_index(), " name=\"" . $p_name . "_month\"$t_disable>";
echo $t_blank_line;
print_numeric_month_option_list( $t_date[1] );
print_month_option_list( $t_date[1] );
echo "</select>\n";
}
if( strcasecmp( $t_char, "D" ) == 0 ) {
Expand Down

0 comments on commit 0a78482

Please sign in to comment.