Skip to content

Commit

Permalink
Add blank after email in notification for @ mentions
Browse files Browse the repository at this point in the history
Fixes #21680
  • Loading branch information
atrol committed Sep 8, 2016
1 parent 05277b4 commit 82c1259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/email_api.php
Expand Up @@ -1377,7 +1377,7 @@ function email_user_mention( $p_bug_id, $p_mention_user_ids, $p_message, $p_remo
$t_email = user_get_email( $t_mention_user_id );

if( access_has_project_level( config_get( 'show_user_email_threshold' ), $t_project_id, $t_mention_user_id ) ) {
$t_sender_email = ' <' . user_get_email( $t_sender_id ) . '>';
$t_sender_email = ' <' . user_get_email( $t_sender_id ) . '> ';
} else {
$t_sender_email = '';
}
Expand Down

0 comments on commit 82c1259

Please sign in to comment.