From: Ivan Kohler Date: Mon, 29 Aug 2016 12:05:10 +0000 (-0700) Subject: quiet warning X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=ae72b17b3bea122afd5058577dce7d3237b9561a quiet warning --- diff --git a/FS/FS/Auth.pm b/FS/FS/Auth.pm index 543978e8b..cc7aeb8c8 100644 --- a/FS/FS/Auth.pm +++ b/FS/FS/Auth.pm @@ -13,7 +13,7 @@ sub auth_class { #my($class) = @_; my $conf = new FS::Conf; - my $module = lc($conf->config('authentication_module')) || 'internal'; + my $module = lc($conf->config('authentication_module') || 'internal'); my $auth_class = 'FS::Auth::'.$module; eval "use $auth_class;";