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
8e1f344a
Commit
8e1f344a
authored
Jun 01, 2001
by
jake%acutex.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More leak pluggin. This one fixes bug 39526.
Patch by Myk Melez <myk@mozilla.org> r= jake@acutex.net
parent
6496a716
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
3 deletions
+22
-3
show_activity.cgi
show_activity.cgi
+22
-3
No files found.
show_activity.cgi
View file @
8e1f344a
...
@@ -19,21 +19,40 @@
...
@@ -19,21 +19,40 @@
# Rights Reserved.
# Rights Reserved.
#
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Myk Melez <myk@mozilla.org>
use
diagnostics
;
use
diagnostics
;
use
strict
;
use
strict
;
require
"CGI.pl"
;
require
"CGI.pl"
;
ConnectToDatabase
();
######################################################################
# Begin Data/Security Validation
######################################################################
# Check whether or not the user is currently logged in. This function
# sets the value of $::usergroupset, the binary number that records
# the set of groups to which the user belongs and which we can use
# to determine whether or not the user is authorized to access this bug.
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'
});
######################################################################
# End Data/Security Validation
######################################################################
print
"Content-type: text/html\n\n"
;
print
"Content-type: text/html\n\n"
;
PutHeader
(
"Changes made to bug $::FORM{'id'}"
,
"Activity log"
,
PutHeader
(
"Changes made to bug $::FORM{'id'}"
,
"Activity log"
,
"Bug $::FORM{'id'}"
);
"Bug $::FORM{'id'}"
);
ConnectToDatabase
();
DumpBugActivity
(
$::FORM
{
'id'
});
DumpBugActivity
(
$::FORM
{
'id'
});
print
"<hr><a href=show_bug.cgi?id=$::FORM{'id'}>Back to bug $::FORM{'id'}</a>\n"
;
print
qq|<hr><a href="show_bug.cgi?id=$::FORM{'id'}">Back to bug $::FORM{'id'}</a>\n|
;
PutFooter
();
PutFooter
();
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