Skip to content

Commit

Permalink
Fix broken links on View Issues page
Browse files Browse the repository at this point in the history
The print reports, csv and excel export buttons are missing the `?` in
the URL before the query parameters.

Regression introduced in 2.20.0 by 0127d16.

Fixes #25697
  • Loading branch information
dregad committed Apr 17, 2019
1 parent 72e3479 commit 934c01d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion view_all_inc.php
Expand Up @@ -115,7 +115,8 @@
if( empty( $t_filter_param ) ) {
$t_summary_link = 'view_all_set.php?summary=1&temporary=y';
} else {
$t_summary_link = 'summary_page.php?' . $t_filter_param;
$t_filter_param = '?' . $t_filter_param;
$t_summary_link = 'summary_page.php' . $t_filter_param;
}
# -- Print and Export links --
print_small_button( 'print_all_bug_page.php' . $t_filter_param, lang_get( 'print_all_bug_page_link' ) );
Expand Down

0 comments on commit 934c01d

Please sign in to comment.