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
16488acd
Commit
16488acd
authored
Jul 19, 2000
by
dave%intrec.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 27248 (Bug listings saved with .html extension). Patch
submitted by mhamby@logicon.com (Mark Hamby).
parent
9154c59e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
buglist.cgi
buglist.cgi
+2
-0
long_list.cgi
long_list.cgi
+2
-1
reports.cgi
reports.cgi
+2
-1
No files found.
buglist.cgi
View file @
16488acd
...
...
@@ -764,6 +764,7 @@ if (exists $ENV{'HTTP_USER_AGENT'} && $ENV{'HTTP_USER_AGENT'} =~ /Mozilla.[3-9]/
# Note! HTML header is complete!
}
else
{
print
"Content-type: text/html\n"
;
print
"Content-disposition: attachment; filename=bugzilla_bug_list.html\n"
;
# Note! Don't finish HTML header yet! Only one newline so far!
}
...
...
@@ -1143,6 +1144,7 @@ if ($serverpush) {
print
"\n"
;
print
"--thisrandomstring\n"
;
print
"Content-type: text/html\n"
;
print
"Content-disposition: attachment; filename=bugzilla_bug_list.html\n"
;
# Note! HTML header not yet closed
}
my
$toolong
=
0
;
...
...
long_list.cgi
View file @
16488acd
...
...
@@ -36,7 +36,8 @@ sub sillyness {
$zz
=
%::
FORM
;
}
print
"Content-type: text/html\n\n"
;
print
"Content-type: text/html\n"
;
print
"Content-disposition: attachement; filename=bugzilla_bug_list.html\n\n"
;
PutHeader
(
"Full Text Bug Listing"
);
ConnectToDatabase
();
...
...
reports.cgi
View file @
16488acd
...
...
@@ -52,7 +52,8 @@ my %reports =
"show_chart"
=>
\&
show_chart
,
);
print
"Content-type: text/html\n\n"
;
print
"Content-type: text/html\n"
;
print
"Content-disposition: attachment; filename=bugzilla_report.html\n\n"
;
# If we're here for the first time, give a banner. Else respect the banner flag.
if
(
(
!
defined
$::FORM
{
'product'
})
||
(
$::FORM
{
'banner'
})
)
...
...
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