From dd104b03f4524fdb7997d34379c78e921bef8742 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 9 Jan 2013 16:50:48 +0000 Subject: [PATCH] Invoke constructor correctly! --- Webperl/Auth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Webperl/Auth.pm b/Webperl/Auth.pm index 641afb4..a72fa9a 100644 --- a/Webperl/Auth.pm +++ b/Webperl/Auth.pm @@ -303,7 +303,7 @@ sub get_user_authmethod_module { if($authmethod); # If the user doesn't have an AuthMethod set, fall back on the base class. - return AuthMethod -> new(); + return WebPerl::AuthMethod -> new(); } 1;