diff --git a/csv_export.php b/csv_export.php index a538643f8d..2dcb5ee895 100644 --- a/csv_export.php +++ b/csv_export.php @@ -56,7 +56,7 @@ $t_filter = filter_get_bug_rows_filter(); # Get the query clauses -$t_query_clauses = filter_get_bug_rows_query_clauses( $t_filter, $p_project_id, $p_user_id, $p_show_sticky ); +$t_query_clauses = filter_get_bug_rows_query_clauses( $t_filter ); # Get the total number of bugs that meet the criteria. $p_bug_count = filter_get_bug_count( $t_query_clauses ); diff --git a/excel_xml_export.php b/excel_xml_export.php index 02ff1c5316..583334193a 100644 --- a/excel_xml_export.php +++ b/excel_xml_export.php @@ -81,7 +81,7 @@ $t_filter = filter_get_bug_rows_filter(); # Get the query clauses -$t_query_clauses = filter_get_bug_rows_query_clauses( $t_filter, $p_project_id, $p_user_id, $p_show_sticky ); +$t_query_clauses = filter_get_bug_rows_query_clauses( $t_filter ); # Get the total number of bugs that meet the criteria. $p_bug_count = filter_get_bug_count( $t_query_clauses );