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
cb122437
Commit
cb122437
authored
Oct 17, 2003
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correcting the previous backout attempt, apparrently typoed a version number last time
parent
7f892832
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
process_bug.cgi
process_bug.cgi
+5
-5
No files found.
process_bug.cgi
View file @
cb122437
...
...
@@ -842,15 +842,15 @@ if (defined $::FORM{newcc} || defined $::FORM{removecc} || defined $::FORM{massc
}
if
(
$cc_add
)
{
$cc_add
=~
s/
^[\s,]+//
;
# Remove leading delimiters.
foreach
my
$person
(
split
(
/[\s,]+/
,
$cc_add
)
)
{
$cc_add
=~
s/
[\s,]+/ /g
;
# Change all delimiters to a single space
foreach
my
$person
(
split
(
" "
,
$cc_add
)
)
{
my
$pid
=
DBNameToIdAndCheck
(
$person
);
$cc_add
{
$pid
}
=
$person
;
}
}
if
(
$cc_remove
)
{
$cc_remove
=~
s/
^[\s,]+//
;
# Remove leading delimiters.
foreach
my
$person
(
split
(
/[\s,]+/
,
$cc_remove
)
)
{
$cc_remove
=~
s/
[\s,]+/ /g
;
# Change all delimiters to a single space
foreach
my
$person
(
split
(
" "
,
$cc_remove
)
)
{
my
$pid
=
DBNameToIdAndCheck
(
$person
);
$cc_remove
{
$pid
}
=
$person
;
}
...
...
@@ -858,7 +858,7 @@ if (defined $::FORM{newcc} || defined $::FORM{removecc} || defined $::FORM{massc
}
CheckFormFieldDefined
(
\%::
FORM
,
'knob'
,
"check that \"Leave as...\" was selected."
);
CheckFormFieldDefined
(
\%::
FORM
,
'knob'
);
SWITCH:
for
(
$::FORM
{
'knob'
})
{
/^none$/
&&
do
{
last
SWITCH
;
...
...
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