Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes #4516: my_view_inc.php ignores config-option bug_count_hyperlin…
…k_prefix
  • Loading branch information
rombert committed Dec 7, 2011
1 parent d6b9592 commit e26131c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions my_view_inc.php
Expand Up @@ -405,9 +405,9 @@
# -- Viewing range info --?>
<td class="form-title" colspan="2">
<?php
print_link( 'view_all_set.php?type=1&temporary=y&' . $url_link_parameters[$t_box_title], $box_title, false, 'subtle' );
print_link( html_entity_decode( config_get( 'bug_count_hyperlink_prefix' ) ).'&' . $url_link_parameters[$t_box_title], $box_title, false, 'subtle' );
echo '&#160;';
print_bracket_link( 'view_all_set.php?type=1&temporary=y&' . $url_link_parameters[$t_box_title], '^', true, 'subtle' );
print_bracket_link( html_entity_decode( config_get( 'bug_count_hyperlink_prefix' ) ).'&' . $url_link_parameters[$t_box_title], '^', true, 'subtle' );

if( count( $rows ) > 0 ) {
$v_start = $t_filter[FILTER_PROPERTY_ISSUES_PER_PAGE] * ( $f_page_number - 1 ) + 1;
Expand Down

0 comments on commit e26131c

Please sign in to comment.