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: