diff options
author | Mark Wells <mark@freeside.biz> | 2015-11-13 16:42:40 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-11-14 11:05:53 -0800 |
commit | 80943daf9e33f2045da3dbf6fbf431b4c6b81f13 (patch) | |
tree | 867d31fb140f20270a54472b884d0b83c47f9673 | |
parent | a6eaf766f706f9c8185a757813f3570b3a507c86 (diff) |
remove ugly workaround for Params::Classify bug, #32456
-rw-r--r-- | FS/FS/Password_Mixin.pm | 4 | ||||
-rw-r--r-- | debian/control | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/FS/FS/Password_Mixin.pm b/FS/FS/Password_Mixin.pm index af4c5e2b7..c4549c727 100644 --- a/FS/FS/Password_Mixin.pm +++ b/FS/FS/Password_Mixin.pm @@ -4,7 +4,7 @@ use FS::Record qw(qsearch); use FS::Conf; use FS::password_history; use Authen::Passphrase; -# use Authen::Passphrase::BlowfishCrypt; # ha ha, no. +use Authen::Passphrase::BlowfishCrypt; # https://rt.cpan.org/Ticket/Display.html?id=72743 our $DEBUG = 1; @@ -12,7 +12,7 @@ our $conf; FS::UID->install_callback( sub { $conf = FS::Conf->new; # this is safe - eval "use Authen::Passphrase::BlowfishCrypt;"; + #eval "use Authen::Passphrase::BlowfishCrypt;"; }); our $me = '[' . __PACKAGE__ . ']'; diff --git a/debian/control b/debian/control index cf3208899..ea4b3bdd8 100644 --- a/debian/control +++ b/debian/control @@ -78,7 +78,8 @@ Depends: gnupg,ghostscript,gsfonts,gzip,latex-xcolor, libexcel-writer-xlsx-perl,libgeo-googleearth-pluggable-perl, libhtml-mason-psgihandler-perl,libdate-simple-perl,libsnmp-perl, libemail-valid-perl,libparse-fixedlength-perl,libregexp-common-net-cidr-perl, - libio-string-perl,libnet-mac-vendor-perl,libnet-https-any-perl + libio-string-perl,libnet-mac-vendor-perl,libnet-https-any-perl, + libparams-classify-perl (>= 0.013-5.1) Suggests: libbusiness-onlinepayment-perl Description: Libraries for Freeside billing and trouble ticketing Freeside is a web-based billing and trouble ticketing application. |