diff options
author | mkanat%kerio.com <> | 2005-07-13 10:56:58 +0000 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-07-13 10:56:58 +0000 |
commit | f1923f8e85501143d0be63d872c726159440f6c1 (patch) | |
tree | 0eee13f099d9f79f5072acaca60ded9293402e00 /Bugzilla/Auth | |
parent | 4b29000946fb102e2db7d8ac5c6c502c03387de1 (diff) | |
download | bugs-f1923f8e85501143d0be63d872c726159440f6c1.tar bugs-f1923f8e85501143d0be63d872c726159440f6c1.tar.gz bugs-f1923f8e85501143d0be63d872c726159440f6c1.tar.bz2 bugs-f1923f8e85501143d0be63d872c726159440f6c1.tar.xz bugs-f1923f8e85501143d0be63d872c726159440f6c1.zip |
Bug 300336: Bugzilla::Auth should not contain any exported subroutines
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
Diffstat (limited to 'Bugzilla/Auth')
-rw-r--r-- | Bugzilla/Auth/Verify/DB.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Bugzilla/Auth/Verify/DB.pm b/Bugzilla/Auth/Verify/DB.pm index 4a45e81e7..405a737b8 100644 --- a/Bugzilla/Auth/Verify/DB.pm +++ b/Bugzilla/Auth/Verify/DB.pm @@ -34,10 +34,7 @@ use strict; use Bugzilla::Config; use Bugzilla::Constants; use Bugzilla::Util; -# Because of the screwy way that Auth works, it thinks -# that we're redefining subroutines if we "use" anything -# that "uses" Bugzilla::Auth. -require Bugzilla::User; +use Bugzilla::User; my $edit_options = { 'new' => 1, |