From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CC59B138335 for ; Fri, 13 Sep 2019 07:43:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2E8CE0D49; Fri, 13 Sep 2019 07:43:40 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C8FBE0D49 for ; Fri, 13 Sep 2019 07:43:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76D2F34B101 for ; Fri, 13 Sep 2019 07:43:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 595FD7E9 for ; Fri, 13 Sep 2019 07:43:36 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1568360555.cf314d16a4f86bc6cdf3b8652766fe93b6f858e4.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-bugzilla:bugstest commit in: / X-VCS-Repository: proj/gentoo-bugzilla X-VCS-Files: enter_bug.cgi X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cf314d16a4f86bc6cdf3b8652766fe93b6f858e4 X-VCS-Branch: bugstest Date: Fri, 13 Sep 2019 07:43:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a055662c-fed6-4569-a321-4a3442a7fad6 X-Archives-Hash: c25c7e148f23539f227c99a125da9538 commit: cf314d16a4f86bc6cdf3b8652766fe93b6f858e4 Author: Michał Górny gentoo org> AuthorDate: Fri Sep 13 07:42:35 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 13 07:42:35 2019 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-bugzilla.git/commit/?id=cf314d16 Do not add cloned bug to 'depends on' Bug: https://bugs.gentoo.org/521230 Signed-off-by: Michał Górny gentoo.org> enter_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;