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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
53a6fd98
Commit
53a6fd98
authored
Mar 10, 2005
by
mkanat%kerio.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 285541: QA Contacts No Longer Appear in show_bug
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=justdave, a=justdave
parent
37c937b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Bug.pm
Bugzilla/Bug.pm
+2
-2
No files found.
Bugzilla/Bug.pm
View file @
53a6fd98
...
...
@@ -372,7 +372,7 @@ sub qa_contact () {
return
$self
->
{
'qa_contact'
}
if
exists
$self
->
{
'qa_contact'
};
if
(
Param
(
'useqacontact'
)
&&
$self
->
{
'qa_contact_id'
}
>
0
)
{
$self
->
{
'qa_contact'
}
=
new
Bugzilla::
User
(
$self
->
{
'qa_contact'
});
$self
->
{
'qa_contact'
}
=
new
Bugzilla::
User
(
$self
->
{
'qa_contact
_id
'
});
}
else
{
# XXX - This is somewhat inconsistent with the assignee/reporter
# methods, which will return an empty User if they get a 0.
...
...
@@ -512,7 +512,7 @@ sub user {
my
$canedit
=
$unknown_privileges
||
Bugzilla
->
user
->
id
==
$self
->
{
assigned_to_id
}
||
(
Param
(
'useqacontact'
)
&&
$self
->
qa_contact
&&
$self
->
{
'qa_contact_id'
}
&&
Bugzilla
->
user
->
id
==
$self
->
{
qa_contact_id
});
my
$canconfirm
=
$unknown_privileges
||
Bugzilla
->
user
->
in_group
(
"canconfirm"
);
...
...
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