Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
a1b6acbd
Commit
a1b6acbd
authored
May 07, 2014
by
Kent Rogers
Committed by
Byron Jones
May 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 814415: See Also should use spaces as value separators instead of
commas r=glob, a=justdave
parent
85e0d6c9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
process_bug.cgi
process_bug.cgi
+1
-1
field-help.none.tmpl
template/en/default/bug/field-help.none.tmpl
+1
-1
No files found.
process_bug.cgi
View file @
a1b6acbd
...
...
@@ -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'
)];
...
...
template/en/default/bug/field-help.none.tmpl
View file @
a1b6acbd
...
...
@@ -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
.
<p>You should normally use this field to refer to $terms.bugs in
<em>other</em> installations. For $terms.bugs in this
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment