From 0b48797e624bd85c984e6fc1a6c9e4c0cb227927 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Mon, 17 Jan 2000 19:54:58 +0000 Subject: Add a space after the comma when listing a bug with multiple keywords, to be consistant with the way it gets listed in bug lists. --- bug_form.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bug_form.pl') diff --git a/bug_form.pl b/bug_form.pl index a58846ebb..8af49c635 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -340,7 +340,7 @@ if (@::legal_keywords) { while (MoreSQLData()) { push(@list, FetchOneColumn()); } - my $value = value_quote(join(',', @list)); + my $value = value_quote(join(', ', @list)); print qq{ Keywords: -- cgit v1.2.3-24-g4f1b