Skip to content

Commit

Permalink
Remove undeclared variables from excel, csv export
Browse files Browse the repository at this point in the history
The undeclared variables were introduced by error after rebasing PR from
Issue #20424
  • Loading branch information
cproensa authored and dregad committed Aug 16, 2016
1 parent b9289f9 commit b08cafe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion csv_export.php
Expand Up @@ -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 );
Expand Down
2 changes: 1 addition & 1 deletion excel_xml_export.php
Expand Up @@ -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 );
Expand Down

0 comments on commit b08cafe

Please sign in to comment.