Skip to content

Commit

Permalink
Fixed # bug links in emails.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@827 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Mar 29, 2002
1 parent 9bba7ec commit 23259d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion core_email_API.php
Expand Up @@ -383,7 +383,6 @@ function email_build_bugnote_message( $p_bug_id ) {
$t_message = $t_message.$g_email_separator2."\n";
$t_message = $t_message.wordwrap( $t_note )."\n\n";
}

return $t_message;
}
# --------------------
Expand Down
4 changes: 2 additions & 2 deletions core_helper_API.php
Expand Up @@ -272,11 +272,11 @@ function process_bug_link_email( $p_string ) {

if ( ON == get_current_user_pref_field( "advanced_view" ) ) {
return preg_replace("/#([0-9]+)/",
"http://$g_view_bug_advanced_page?f_id=\\1",
"$g_view_bug_advanced_page?f_id=\\1",
$p_string);
} else {
return preg_replace("/#([0-9]+)/",
"http://$g_view_bug_page?f_id=\\1",
"$g_view_bug_page?f_id=\\1",
$p_string);
}
}
Expand Down
1 change: 1 addition & 0 deletions doc/ChangeLog
Expand Up @@ -8,6 +8,7 @@ Mantis
* Fixed problems with documentation links.
* Fixed a few documentation errors in configuration.html.
* Fixed bug_update to no longer cut off steps_to_reproduce if it has quotation marks.
* Fixed # bug links in emails.
* Modified accounts so that protected accounts are not accessible by the user.
* Modified report page formating.
* Modified file size reports to show up as bytes.
Expand Down

0 comments on commit 23259d8

Please sign in to comment.