summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorSimon Green <mail@simon.green>2016-10-30 05:53:25 +0100
committerSimon Green <mail@simon.green>2016-10-30 05:53:25 +0100
commit06779036db44ec799fee99173015c5349eb80c92 (patch)
tree098b3bdbda7a7a96cdcc777b5e547caa15fbdf89 /Bugzilla
parent6cf171cc006d4a4ec4ee5da30b4349e49f76845d (diff)
downloadbugzilla-06779036db44ec799fee99173015c5349eb80c92.tar.gz
bugzilla-06779036db44ec799fee99173015c5349eb80c92.tar.xz
Bug 331007 - alias_in_use doesn't acknowledge that you could remove the alias from the other bug
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Bug.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index a41e4f1aa..46b16ffd6 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -1445,7 +1445,7 @@ sub _check_alias {
&& (!ref $invocant || $other_bug->id != $invocant->id))
{
ThrowUserError("alias_in_use", { alias => $alias,
- bug_id => $other_bug->id });
+ other_bug => $other_bug });
}
}