Skip to content

Commit

Permalink
Remove unused parameters in string_get_bugnote_view_url calls
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Nov 3, 2015
1 parent cd34053 commit 878db3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/string_api.php
Expand Up @@ -668,7 +668,7 @@ function string_get_bugnote_view_link( $p_bug_id, $p_bugnote_id, $p_user_id = nu
$t_link .= config_get_global( 'short_path' );
}

$t_link .= string_get_bugnote_view_url( $p_bug_id, $p_bugnote_id, $p_user_id ) . '"';
$t_link .= string_get_bugnote_view_url( $p_bug_id, $p_bugnote_id ) . '"';
if( $p_detail_info ) {
$t_reporter = string_attribute( user_get_name( bugnote_get_field( $p_bugnote_id, 'reporter_id' ) ) );
$t_update_date = string_attribute( date( config_get( 'normal_date_format' ), ( bugnote_get_field( $p_bugnote_id, 'last_modified' ) ) ) );
Expand Down

0 comments on commit 878db3d

Please sign in to comment.