summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Template.pm
diff options
context:
space:
mode:
authorburnus%gmx.de <>2003-04-09 18:29:15 +0200
committerburnus%gmx.de <>2003-04-09 18:29:15 +0200
commitbbb41a57d19d5e395e92c42d9852357f56e76635 (patch)
tree2bf74d97672cc239f3d5fb69aaa3d692966277e7 /Bugzilla/Template.pm
parent1b071f06dee3e09e8316feadecc0625ed47f01a8 (diff)
downloadbugzilla-bbb41a57d19d5e395e92c42d9852357f56e76635.tar.gz
bugzilla-bbb41a57d19d5e395e92c42d9852357f56e76635.tar.xz
Bug 71790 - Duplicate resolution field should include bug number of original
r=bbaetz,a=justdave
Diffstat (limited to 'Bugzilla/Template.pm')
-rw-r--r--Bugzilla/Template.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index 463247c86..e596af226 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -217,7 +217,7 @@ sub create {
my ($context, $bug) = @_;
return sub {
my $text = shift;
- return &::GetBugLink($text, $bug);
+ return &::GetBugLink($bug, $text);
};
},
1