]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 339858: Remove useless module dependencies in Bugzilla::Auth::* - Patch by Frédér...
authorlpsolit%gmail.com <>
Thu, 1 Jun 2006 07:19:36 +0000 (07:19 +0000)
committerlpsolit%gmail.com <>
Thu, 1 Jun 2006 07:19:36 +0000 (07:19 +0000)
Bugzilla/Auth/Login/CGI.pm
Bugzilla/Auth/Login/Cookie.pm
Bugzilla/Auth/Login/Env.pm
Bugzilla/Auth/Persist/Cookie.pm

index 14b64ee797473007928990016d5da0067e9d3c42..e6fa7d590093a4976e837938226df8d5da8b45f0 100644 (file)
@@ -36,7 +36,7 @@ use constant user_can_create_account => 1;
 use Bugzilla::Config;
 use Bugzilla::Constants;
 use Bugzilla::Util;
-use Bugzilla::User;
+use Bugzilla::Error;
 
 sub get_login_info {
     my ($self) = @_;
index e4cc0daac9c633716886a082419101d9e53e4104..2ca4aca72ccd807031cff01c2e11f4c61a272f41 100644 (file)
@@ -21,7 +21,6 @@ use base qw(Bugzilla::Auth::Login);
 
 use Bugzilla::Auth;
 use Bugzilla::Constants;
-use Bugzilla::User;
 use Bugzilla::Util;
 
 use constant requires_persistence  => 0;
index fda71bf358bf76f96e2663af47216aec9699ee87..ade192ea0fca278b514abf727749c6e1aec7c040 100644 (file)
@@ -27,7 +27,6 @@ use base qw(Bugzilla::Auth::Login);
 use Bugzilla::Config;
 use Bugzilla::Constants;
 use Bugzilla::Error;
-use Bugzilla::User;
 
 use constant can_logout => 0;
 use constant can_login  => 0;
index ce59ef4bd803768dac04d89fa4215a53e63531eb..c41948e72aedefa97b08aac6325ade64211459fc 100644 (file)
@@ -32,10 +32,11 @@ package Bugzilla::Auth::Persist::Cookie;
 use strict;
 use fields qw();
 
+use Bugzilla::Auth;
 use Bugzilla::Config;
 use Bugzilla::Constants;
 use Bugzilla::Util;
-use Bugzilla::User;
+use Bugzilla::Token;
 
 use List::Util qw(first);