Skip to content

Commit e26131c

Browse files
committedDec 7, 2011
Fixes #4516: my_view_inc.php ignores config-option bug_count_hyperlink_prefix
1 parent d6b9592 commit e26131c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎my_view_inc.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -405,9 +405,9 @@
405405
# -- Viewing range info --?>
406406
<td class="form-title" colspan="2">
407407
<?php
408-
print_link( 'view_all_set.php?type=1&temporary=y&' . $url_link_parameters[$t_box_title], $box_title, false, 'subtle' );
408+
print_link( html_entity_decode( config_get( 'bug_count_hyperlink_prefix' ) ).'&' . $url_link_parameters[$t_box_title], $box_title, false, 'subtle' );
409409
echo '&#160;';
410-
print_bracket_link( 'view_all_set.php?type=1&temporary=y&' . $url_link_parameters[$t_box_title], '^', true, 'subtle' );
410+
print_bracket_link( html_entity_decode( config_get( 'bug_count_hyperlink_prefix' ) ).'&' . $url_link_parameters[$t_box_title], '^', true, 'subtle' );
411411

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

0 commit comments

Comments
 (0)