diff options
author | mkanat%kerio.com <> | 2005-02-25 08:42:47 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-02-25 08:42:47 +0100 |
commit | fa9b63f55b3118a30ff641d0e386266eb877e258 (patch) | |
tree | a388e3577fef067abe83e94bbdb52428e442b35b /editwhines.cgi | |
parent | 63dde60072374b2f7ef2f756d4ab9dff66669793 (diff) | |
download | bugzilla-fa9b63f55b3118a30ff641d0e386266eb877e258.tar.gz bugzilla-fa9b63f55b3118a30ff641d0e386266eb877e258.tar.xz |
Bug 283237: Move DBname_to_id out of globals.pl
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=wurblzap, a=myk
Diffstat (limited to 'editwhines.cgi')
-rwxr-xr-x | editwhines.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editwhines.cgi b/editwhines.cgi index b9808941a..013ee0df4 100755 --- a/editwhines.cgi +++ b/editwhines.cgi @@ -248,7 +248,7 @@ if ($cgi->param('update')) { my $emailregexp = Param('emailregexp'); $mailto =~ /($emailregexp)/; $mailto =~ $1; - $mailto_id = DBname_to_id($mailto); + $mailto_id = login_to_id($mailto); } elsif ($mailto_type == MAILTO_GROUP) { # detaint the group parameter |