Fix inheritance path (#1440)

environments/ppa-mbqj77/deployments/1
Xavier Guimard 7 years ago
parent 66b81ac277
commit 7b2a98d7f3
  1. 2
      lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/CDA.pm
  2. 2
      lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/SecureToken.pm
  3. 2
      lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ZimbraPreAuth.pm

@ -48,7 +48,7 @@ sub run {
return $class->REDIRECT;
}
}
return $class->SUPER::run( $req, $rule, $protection );
return $class->Lemonldap::NG::Handler::Main::Run::run( $req, $rule, $protection );
}
## @rmethod protected hash getCDAInfos(id)

@ -33,7 +33,7 @@ BEGIN {
sub run {
my $class = shift;
my $r = $_[0];
my $ret = $class->SUPER::run($r);
my $ret = $class->Lemonldap::NG::Handler::Main::Run::run($r);
# Continue only if user is authorized
return $ret unless ( $ret == $class->OK );

@ -16,7 +16,7 @@ our $VERSION = '2.0.0';
# Overload main run method
sub run {
my ( $class, $req ) = @_;
my $ret = $class->SUPER::run($req);
my $ret = $class->Lemonldap::NG::Handler::Main::Run::run($req);
# Continue only if user is authorized
return $ret unless ( $ret == $class->OK );

Loading…
Cancel
Save