From 700f08ad33536bca98a8842f0bb84b8e56f490bb Mon Sep 17 00:00:00 2001 From: Christophe Maudoux Date: Wed, 8 Aug 2018 10:09:33 +0200 Subject: [PATCH] Fix mistake (#1480) --- lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm index 943a34acc..d6096edda 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm @@ -730,7 +730,7 @@ sub sendHtml { $self->logger->debug("Set CSP form-action with urldc : $url"); $csp .= " $url"; } - my $url = $args->{params}->{URL}; + my $url = $args{params}->{URL}; $self->logger->debug("Required Params URL : $url"); if ( defined $url and $url =~ s#(https?://[^/]+).*#$1# ) { $self->logger->debug("Set CSP form-action with Params URL : $url");