From a1b6acbd5a520e3499a71aa3500c24815e07c72c Mon Sep 17 00:00:00 2001 From: Kent Rogers Date: Wed, 7 May 2014 14:14:26 +0800 Subject: Bug 814415: See Also should use spaces as value separators instead of commas r=glob, a=justdave --- process_bug.cgi | 2 +- template/en/default/bug/field-help.none.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/process_bug.cgi b/process_bug.cgi index ed1a19203..389ee18d1 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -250,7 +250,7 @@ if (should_set('comment')) { } if (should_set('see_also')) { $set_all_fields{'see_also'}->{add} = - [split(/[\s,]+/, $cgi->param('see_also'))]; + [split(/[\s]+/, $cgi->param('see_also'))]; } if (should_set('remove_see_also')) { $set_all_fields{'see_also'}->{remove} = [$cgi->param('remove_see_also')]; diff --git a/template/en/default/bug/field-help.none.tmpl b/template/en/default/bug/field-help.none.tmpl index ee32014ad..2b6096547 100644 --- a/template/en/default/bug/field-help.none.tmpl +++ b/template/en/default/bug/field-help.none.tmpl @@ -126,7 +126,7 @@ see_also => "This allows you to refer to $terms.bugs in other installations. You can enter a URL to $terms.abug in the 'Add $terms.Bug URLs' field to note that that $terms.bug is related to this one. You can - enter multiple URLs at once by separating them with a comma. + enter multiple URLs at once by separating them with whitespace.

You should normally use this field to refer to $terms.bugs in other installations. For $terms.bugs in this -- cgit v1.2.3-24-g4f1b