diff options
author | terry%mozilla.org <> | 2000-01-17 20:54:58 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-17 20:54:58 +0100 |
commit | 0b48797e624bd85c984e6fc1a6c9e4c0cb227927 (patch) | |
tree | 60947195a9d0008b896d30e666d23dd30130c99c | |
parent | 9dd61f718a075a1f97aa0926e1110801edf4154b (diff) | |
download | bugzilla-0b48797e624bd85c984e6fc1a6c9e4c0cb227927.tar.gz bugzilla-0b48797e624bd85c984e6fc1a6c9e4c0cb227927.tar.xz |
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.
-rw-r--r-- | bug_form.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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{ <TR> <TD ALIGN=right><B><A HREF="describekeywords.cgi">Keywords</A>:</B> |