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
0d0eff43
Commit
0d0eff43
authored
May 20, 2000
by
endico%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix url of dtd
parent
f910d39f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
export_bug.cgi
export_bug.cgi
+8
-3
No files found.
export_bug.cgi
View file @
0d0eff43
...
...
@@ -25,7 +25,7 @@ use diagnostics;
use
strict
;
use
RelationSet
;
use
XML::
Dumper
;
#
use vars %::COOKIE;
use
vars
%::
COOKIE
;
require
"CGI.pl"
;
#$::lockcount = 0;
...
...
@@ -277,12 +277,17 @@ sub Unlock {
}
my
$xml
;
my
$urlbase
=
Param
(
"urlbase"
);
$xml
=
"<?xml version=\"1.0\" standalone=\"no\"?>\n"
;
$xml
.=
"<!DOCTYPE bugzilla SYSTEM \""
.
Param
(
"urlbase"
)
.
"\">\n"
;
$xml
.=
"<!DOCTYPE bugzilla SYSTEM \"$urlbase"
;
if
(
!
(
$urlbase
=~
/.+\/$/
))
{
$xml
.=
"/"
;
}
$xml
.=
"bugzilla.dtd\">\n"
;
$xml
.=
"<bugzilla"
;
$xml
.=
" exporter=\"$exporter\""
;
$xml
.=
" version=\"$::param{'version'}\""
;
$xml
.=
" urlbase=\"
"
.
Param
(
"urlbase"
)
.
"
\""
;
$xml
.=
" urlbase=\"
$urlbase
\""
;
$xml
.=
" maintainer=\""
.
Param
(
"maintainer"
)
.
"\">\n"
;
$xml
.=
"<bug>\n"
;
...
...
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