diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-09-13 09:42:35 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-09-13 09:42:35 +0200 |
commit | cf314d16a4f86bc6cdf3b8652766fe93b6f858e4 (patch) | |
tree | b349e9c552db7f68bf5bda8c99285d6a517109d3 | |
parent | Remove 'This bug was ... clone of ...' text from default comment (diff) | |
download | bugzilla-cf314d16a4f86bc6cdf3b8652766fe93b6f858e4.tar.gz bugzilla-cf314d16a4f86bc6cdf3b8652766fe93b6f858e4.tar.bz2 bugzilla-cf314d16a4f86bc6cdf3b8652766fe93b6f858e4.zip |
Do not add cloned bug to 'depends on'
Bug: https://bugs.gentoo.org/521230
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rwxr-xr-x | enter_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index e03a88528..0a74af830 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -208,7 +208,7 @@ if ($cloned_bug_id) { $vars->{'short_desc'} = $cloned_bug->short_desc; $vars->{'bug_file_loc'} = $cloned_bug->bug_file_loc; $vars->{'keywords'} = $cloned_bug->keywords; - $vars->{'dependson'} = join (", ", $cloned_bug_id, @{$cloned_bug->dependson}); + $vars->{'dependson'} = join (", ", @{$cloned_bug->dependson}); $vars->{'blocked'} = join (", ", @{$cloned_bug->blocked}); $vars->{'deadline'} = $cloned_bug->deadline; $vars->{'estimated_time'} = $cloned_bug->estimated_time; |