summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authorGervase Markham <gerv@gerv.net>2014-01-27 15:59:36 +0100
committerGervase Markham <gerv@mozilla.org>2014-01-27 15:59:36 +0100
commit10cc520ecb23683b3ae83a817e4457bc2fdc01fb (patch)
tree7e56e83fb71bc23066ddc7a99c1589cb3419931e /Bugzilla/User.pm
parenteb7d562ca51276b6f448a1ae0e676132c7d35b03 (diff)
downloadbugzilla-10cc520ecb23683b3ae83a817e4457bc2fdc01fb.tar.gz
bugzilla-10cc520ecb23683b3ae83a817e4457bc2fdc01fb.tar.xz
Bug 939838 - Kill Bugzilla::User::user_id_to_login function. r=LpSolit, a=justdave.
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm19
1 files changed, 1 insertions, 18 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 1bd6c0b19..5ded9f06e 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -28,7 +28,7 @@ use URI::QueryParam;
use parent qw(Bugzilla::Object Exporter);
@Bugzilla::User::EXPORT = qw(is_available_username
- login_to_id user_id_to_login validate_password
+ login_to_id validate_password
USER_MATCH_MULTIPLE USER_MATCH_FAILED USER_MATCH_SUCCESS
MATCH_SKIP_CONFIRM
);
@@ -2193,17 +2193,6 @@ sub login_to_id {
}
}
-sub user_id_to_login {
- my $user_id = shift;
- my $dbh = Bugzilla->dbh;
-
- return '' unless ($user_id && detaint_natural($user_id));
-
- my $login = $dbh->selectrow_array('SELECT login_name FROM profiles
- WHERE userid = ?', undef, $user_id);
- return $login || '';
-}
-
sub validate_password {
my ($password, $matchpassword) = @_;
@@ -2831,12 +2820,6 @@ of a user, but you don't want the full weight of Bugzilla::User.
However, consider using a Bugzilla::User object instead of this function
if you need more information about the user than just their ID.
-=item C<user_id_to_login($user_id)>
-
-Returns the login name of the user account for the given user ID. If no
-valid user ID is given or the user has no entry in the profiles table,
-we return an empty string.
-
=item C<validate_password($passwd1, $passwd2)>
Returns true if a password is valid (i.e. meets Bugzilla's