Skip to content

Commit 07c5295

Browse files
committedSep 23, 2012
Fix #14737: Date filters do not work with match type = any condition
1 parent 921a400 commit 07c5295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/filter_api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1648,7 +1648,7 @@ function filter_get_bug_rows( &$p_page_number, &$p_per_page, &$p_page_count, &$p
16481648

16491649
$t_where_params[] = strtotime( $t_start_string );
16501650
$t_where_params[] = strtotime( $t_end_string );
1651-
array_push( $t_where_clauses, "($t_bug_table.date_submitted BETWEEN " . db_param() . " AND " . db_param() . " )" );
1651+
array_push( $t_project_where_clauses, "($t_bug_table.date_submitted BETWEEN " . db_param() . " AND " . db_param() . " )" );
16521652
}
16531653

16541654
# fixed in version

0 commit comments

Comments
 (0)
Please sign in to comment.