summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugMail.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-03-02 07:46:21 +0100
committerlpsolit%gmail.com <>2006-03-02 07:46:21 +0100
commit2ba411e9446f9d0ba1cd1e0f555387d346db5001 (patch)
tree58c79970e11b8c5dfa4c9e15ae7a28e006c9b507 /Bugzilla/BugMail.pm
parent620bb51b19bf6bf5c3bced099fc8a65aa1438267 (diff)
downloadbugzilla-2ba411e9446f9d0ba1cd1e0f555387d346db5001.tar.gz
bugzilla-2ba411e9446f9d0ba1cd1e0f555387d346db5001.tar.xz
Bug 281358: Attachment links in bugmail are different from the link in show_bug.cgi - Patch by timeless <timeless@bemail.org> r=LpSolit a=justdave
Diffstat (limited to 'Bugzilla/BugMail.pm')
-rw-r--r--Bugzilla/BugMail.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index da4005730..e20fb5f61 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -593,7 +593,7 @@ sub sendMail {
my $showattachurlbase =
Param('urlbase') . "attachment.cgi?id=";
- $newcomments =~ s/(Created an attachment \(id=([0-9]+)\))/$1\n --> \(${showattachurlbase}$2&action=view\)/g;
+ $newcomments =~ s/(Created an attachment \(id=([0-9]+)\))/$1\n --> \(${showattachurlbase}$2\)/g;
}
$substs{"neworchanged"} = $isnew ? 'New: ' : '';