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
ad8fdfeb
Commit
ad8fdfeb
authored
Jul 19, 2003
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 213085: importxml.pl tries to convert qa_contact from a name to an ID when it's already an ID
r= myk, a= justdave
parent
7c5b568e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
importxml.pl
importxml.pl
+2
-2
No files found.
importxml.pl
View file @
ad8fdfeb
...
...
@@ -581,7 +581,7 @@ for (my $k=1 ; $k <= $bugqty ; $k++) {
my
$qa_contact
;
if
(
(
defined
$bug_fields
{
'qa_contact'
})
&&
(
$qa_contact
=
DBname_to_id
(
$bug_fields
{
'qa_contact'
}))
){
push
(
@values
,
SqlQuote
(
$qa_contact
)
);
push
(
@values
,
$qa_contact
);
push
(
@query
,
"qa_contact"
);
}
else
{
SendSQL
(
"SELECT initialqacontact FROM components, products "
.
...
...
@@ -589,7 +589,7 @@ for (my $k=1 ; $k <= $bugqty ; $k++) {
" AND products.name = "
.
SqlQuote
(
$product
[
0
])
.
" AND components.name = "
.
SqlQuote
(
$component
[
0
])
);
$qa_contact
=
FetchOneColumn
();
push
(
@values
,
SqlQuote
(
DBname_to_id
(
$qa_contact
))
);
push
(
@values
,
$qa_contact
);
push
(
@query
,
"qa_contact"
);
$err
.=
"Setting qa contact to the default for this product.\n"
;
$err
.=
" This bug either had no qa contact or an invalid one.\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