Bug 822348

Summary: a code error in Bug webservice
Product: [Community] Bugzilla Reporter: Wei Shen <wshen>
Component: WebServiceAssignee: PnT DevOps Devs <hss-ied-bugs>
Status: CLOSED CURRENTRELEASE QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 3.6CC: junwang, sgreen
Target Milestone: 4.2-1   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: 4.2.1-1 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2012-05-17 10:02:30 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 786624    

Description Wei Shen 2012-05-17 06:33:38 UTC
https://svn.devel.redhat.com/repos/bugzilla-rh/trunk/Bugzilla/WebService/Bug.pm
Description of problem:
    # REDHAT EXTENSION START 447765
    # Return sane values for assigned_to, reporter, and qa_contact to non-logged users
    if (!$user->id) {
        if (filter_wants $params, 'reporter') {
            $item{'reporter'} = $self->type('string', $bug->reporter->name);
        }
        if (filter_wants $params, 'assigned_to') {
            $item{'assigned_to'} = $self->type('string', $bug->assigned_to->name);
        }
        if (filter_wants $params, 'creator') {
            $item{'creator'} = $self->type('string', $bug->assigned_to->name);
        }

the creator is assigned a value assigned to 
Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:

it should be reporter name
Additional info: