Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9232d16

Browse files
committedSep 23, 2012
Fix #14737: Date filters do not work with match type = any condition
1 parent e910215 commit 9232d16

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
@@ -1624,7 +1624,7 @@ function filter_get_bug_rows( &$p_page_number, &$p_per_page, &$p_page_count, &$p
16241624

16251625
$t_where_params[] = strtotime( $t_start_string );
16261626
$t_where_params[] = strtotime( $t_end_string );
1627-
array_push( $t_where_clauses, "($t_bug_table.date_submitted BETWEEN " . db_param() . " AND " . db_param() . " )" );
1627+
array_push( $t_project_where_clauses, "($t_bug_table.date_submitted BETWEEN " . db_param() . " AND " . db_param() . " )" );
16281628
}
16291629

16301630
# fixed in version

1 commit comments

Comments
 (1)

atrol commented on Jan 4, 2013

@atrol
Member
Please sign in to comment.