Commit a1b6acbd authored by Kent Rogers's avatar Kent Rogers Committed by Byron Jones

Bug 814415: See Also should use spaces as value separators instead of

commas r=glob, a=justdave
parent 85e0d6c9
...@@ -250,7 +250,7 @@ if (should_set('comment')) { ...@@ -250,7 +250,7 @@ if (should_set('comment')) {
} }
if (should_set('see_also')) { if (should_set('see_also')) {
$set_all_fields{'see_also'}->{add} = $set_all_fields{'see_also'}->{add} =
[split(/[\s,]+/, $cgi->param('see_also'))]; [split(/[\s]+/, $cgi->param('see_also'))];
} }
if (should_set('remove_see_also')) { if (should_set('remove_see_also')) {
$set_all_fields{'see_also'}->{remove} = [$cgi->param('remove_see_also')]; $set_all_fields{'see_also'}->{remove} = [$cgi->param('remove_see_also')];
......
...@@ -126,7 +126,7 @@ see_also => ...@@ -126,7 +126,7 @@ see_also =>
"This allows you to refer to $terms.bugs in other installations. "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' 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 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.
<p>You should normally use this field to refer to $terms.bugs in <p>You should normally use this field to refer to $terms.bugs in
<em>other</em> installations. For $terms.bugs in this <em>other</em> installations. For $terms.bugs in this
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment