OpenID: warning message for IssuerDBOpenID use

This commit is contained in:
Clément Oudot 2010-03-15 10:57:17 +00:00
parent d9f324b9f4
commit fa05c16e02

View File

@ -17,6 +17,10 @@ sub issuerDBInit {
my $self = shift;
eval { require Net::OpenID::Server };
$self->abort( 'Unable to load Net::OpenID::Server', $@ ) if ($@);
$self->lmLog(
'OpenID provider module is not fully functionnal now, use for test purpose only',
'warn'
);
return PE_OK;
}