Skip to content

Commit

Permalink
Fix broken "View Issues" link on roadmap page
Browse files Browse the repository at this point in the history
The generated links were invalid, causing the view issues page to return
an unfiltered list of issues, due to the use of '&' instead of '&'.

Fixes #19838
  • Loading branch information
dregad committed Jun 16, 2015
1 parent 26e5b8e commit 8d6178d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roadmap_page.php
Expand Up @@ -90,7 +90,7 @@ function print_version_header( array $p_version_row ) {

echo '<tt>';
echo '<br />', $t_release_title, $t_scheduled_release_date, lang_get( 'word_separator' );
print_bracket_link( 'view_all_set.php?type=1&amp;temporary=y&amp;' . FILTER_PROPERTY_PROJECT_ID . '=' . $t_project_id . '&amp;' . filter_encode_field_and_value( FILTER_PROPERTY_TARGET_VERSION, $t_version_name ), lang_get( 'view_bugs_link' ) );
print_bracket_link( 'view_all_set.php?type=1&temporary=y&' . FILTER_PROPERTY_PROJECT_ID . '=' . $t_project_id . '&' . filter_encode_field_and_value( FILTER_PROPERTY_TARGET_VERSION, $t_version_name ), lang_get( 'view_bugs_link' ) );
echo '<br />';

$t_release_title_without_hyperlinks = $t_project_name . ' - ' . $t_version_name . $t_scheduled_release_date;
Expand Down

0 comments on commit 8d6178d

Please sign in to comment.