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
6161333b
Commit
6161333b
authored
Feb 27, 2004
by
jocuri%softhome.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch for bug 235268: Convert show_activity.cgi to get rid of %FORM; r=jouni; a=justdave.
parent
345cca47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
show_activity.cgi
show_activity.cgi
+5
-3
No files found.
show_activity.cgi
View file @
6161333b
...
...
@@ -28,6 +28,7 @@ use lib qw(.);
use
vars
qw ($template
$vars
);
require
"CGI.pl"
;
my
$cgi
=
Bugzilla
->
cgi
;
ConnectToDatabase
();
...
...
@@ -40,16 +41,17 @@ quietly_check_login();
# Make sure the bug ID is a positive integer representing an existing
# bug that the user is authorized to access.
ValidateBugID
(
$::FORM
{
'id'
});
my
$bug_id
=
$cgi
->
param
(
'id'
);
ValidateBugID
(
$bug_id
);
###############################################################################
# End Data/Security Validation
###############################################################################
(
$vars
->
{
'operations'
},
$vars
->
{
'incomplete_data'
})
=
GetBugActivity
(
$
::FORM
{
'id'
}
);
GetBugActivity
(
$
bug_id
);
$vars
->
{
'bug_id'
}
=
$
::FORM
{
'id'
}
;
$vars
->
{
'bug_id'
}
=
$
bug_id
;
print
Bugzilla
->
cgi
->
header
();
...
...
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