From: Ivan Kohler Date: Mon, 29 Aug 2016 12:05:09 +0000 (-0700) Subject: quiet warning X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=b572042679851fe888f6c01fc2c977cda19b1f50 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;";