summaryrefslogtreecommitdiffstats
path: root/Bug.pm
diff options
context:
space:
mode:
authorendico%mozilla.org <>2000-06-21 16:50:16 +0200
committerendico%mozilla.org <>2000-06-21 16:50:16 +0200
commit4a206aa87922a9922f2a61d4b2a8a458c99a0770 (patch)
tree5b3e3c5c38d991506c974b68b5423295c5ff8182 /Bug.pm
parenta93796224c025abe8c54e5b082678bc51c8eea74 (diff)
downloadbugzilla-4a206aa87922a9922f2a61d4b2a8a458c99a0770.tar.gz
bugzilla-4a206aa87922a9922f2a61d4b2a8a458c99a0770.tar.xz
was converting from dbid to login + real name. Remove the real name
Diffstat (limited to 'Bug.pm')
-rwxr-xr-xBug.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bug.pm b/Bug.pm
index b6cf83c85..79841c1bd 100755
--- a/Bug.pm
+++ b/Bug.pm
@@ -144,8 +144,8 @@ sub initBug {
$self->{'status_whiteboard'} = QuoteXMLChars($self->{'status_whiteboard'});
}
- $self->{'assigned_to'} = &::DBID_to_real_or_loginname($self->{'assigned_to'});
- $self->{'reporter'} = &::DBID_to_real_or_loginname($self->{'reporter'});
+ $self->{'assigned_to'} = &::DBID_to_name($self->{'assigned_to'});
+ $self->{'reporter'} = &::DBID_to_name($self->{'reporter'});
my $ccSet = new RelationSet;
$ccSet->mergeFromDB("select who from cc where bug_id=$bug_id");