Skip to content

Commit

Permalink
Fix #14737: Date filters do not work with match type = any condition
Browse files Browse the repository at this point in the history
  • Loading branch information
rombert committed Sep 23, 2012
1 parent 921a400 commit 07c5295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/filter_api.php
Expand Up @@ -1648,7 +1648,7 @@ function filter_get_bug_rows( &$p_page_number, &$p_per_page, &$p_page_count, &$p

$t_where_params[] = strtotime( $t_start_string );
$t_where_params[] = strtotime( $t_end_string );
array_push( $t_where_clauses, "($t_bug_table.date_submitted BETWEEN " . db_param() . " AND " . db_param() . " )" );
array_push( $t_project_where_clauses, "($t_bug_table.date_submitted BETWEEN " . db_param() . " AND " . db_param() . " )" );
}

# fixed in version
Expand Down

0 comments on commit 07c5295

Please sign in to comment.