diff options
author | Kent Rogers <kar@cray.com> | 2014-05-07 14:14:26 +0800 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-05-07 14:14:26 +0800 |
commit | a1b6acbd5a520e3499a71aa3500c24815e07c72c (patch) | |
tree | 38031c762293462edd67fcb8a42df9865e84f07b /process_bug.cgi | |
parent | Bug 1005780 - When cloning a bug, also add the assignee and qa contact to the... (diff) | |
download | bugzilla-a1b6acbd5a520e3499a71aa3500c24815e07c72c.tar.gz bugzilla-a1b6acbd5a520e3499a71aa3500c24815e07c72c.tar.bz2 bugzilla-a1b6acbd5a520e3499a71aa3500c24815e07c72c.zip |
Bug 814415: See Also should use spaces as value separators instead of
commas
r=glob, a=justdave
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 2 |
1 files changed, 1 insertions, 1 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')]; |