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
7afde703
Commit
7afde703
authored
Jul 21, 2004
by
kiko%async.com.br
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 251933: Remove $::COOKIE from post_bug.cgi. r=joel, a=myk.
parent
8832bf88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
post_bug.cgi
post_bug.cgi
+4
-5
No files found.
post_bug.cgi
View file @
7afde703
...
...
@@ -39,7 +39,6 @@ use Bugzilla::User;
sub
sillyness
{
my
$zz
;
$zz
=
$::buffer
;
$zz
=
%::
COOKIE
;
$zz
=
%::
components
;
$zz
=
%::
versions
;
$zz
=
@::legal_opsys
;
...
...
@@ -469,8 +468,8 @@ if (UserInGroup("editbugs")) {
# Email everyone the details of the new bug
$vars
->
{
'mailrecipients'
}
=
{
'cc'
=>
\
@cc
,
'owner'
=>
DBID_to_name
(
$::FORM
{
'assigned_to'
}),
'reporter'
=>
$::COOKIE
{
'Bugzilla_login'
}
,
'changer'
=>
$::COOKIE
{
'Bugzilla_login'
}
};
'reporter'
=>
Bugzilla
->
user
->
login
,
'changer'
=>
Bugzilla
->
user
->
login
};
if
(
defined
$::FORM
{
'qa_contact'
})
{
$vars
->
{
'mailrecipients'
}
->
{
'qa'
}
=
DBID_to_name
(
$::FORM
{
'qa_contact'
});
...
...
@@ -493,8 +492,8 @@ foreach my $i (@all_deps) {
}
my
@bug_list
;
if
(
$
::COOKIE
{
"BUGLIST"
}
)
{
@bug_list
=
split
(
/:/
,
$
::COOKIE
{
"BUGLIST"
}
);
if
(
$
cgi
->
cookie
(
"BUGLIST"
)
)
{
@bug_list
=
split
(
/:/
,
$
cgi
->
cookie
(
"BUGLIST"
)
);
}
$vars
->
{
'bug_list'
}
=
\
@bug_list
;
...
...
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