diff options
author | lpsolit%gmail.com <> | 2006-06-20 02:30:23 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-06-20 02:30:23 +0200 |
commit | a97d48ec24e5e7d931bd8a0dc39c597ce758d106 (patch) | |
tree | 286ae60acc70da143f2c662a4949dd144120263d /contrib | |
parent | 5510427a679157e889aa1bb170e2b9254aed6c49 (diff) | |
download | bugzilla-a97d48ec24e5e7d931bd8a0dc39c597ce758d106.tar.gz bugzilla-a97d48ec24e5e7d931bd8a0dc39c597ce758d106.tar.xz |
Bug 338793: Remove DBID_to_name() from globals.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=vladd a=justdave
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/bug_email.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/bug_email.pl b/contrib/bug_email.pl index 66a87d038..546c08dc5 100755 --- a/contrib/bug_email.pl +++ b/contrib/bug_email.pl @@ -38,7 +38,7 @@ # # You need to work with bug_email.pl the MIME::Parser installed. # -# $Id: bug_email.pl,v 1.40 2006/06/19 16:25:02 vladd%bugzilla.org Exp $ +# $Id: bug_email.pl,v 1.41 2006/06/19 17:30:24 lpsolit%gmail.com Exp $ ############################################################### # 02/12/2000 (SML) @@ -1081,7 +1081,7 @@ END $val = $Control{ $field }; - $val = DBID_to_name( $val ) if( $field =~ /reporter|assigned_to|qa_contact/ ); + $val = user_id_to_login( $val ) if( $field =~ /reporter|assigned_to|qa_contact/ ); $tmp_reply .= sprintf( " \@%-15s = %-15s\n", $field, $val ); |