From ef7f6b43e3e69b70a7522d75c223d65b681e9be8 Mon Sep 17 00:00:00 2001 From: Maxime Besson Date: Fri, 26 Aug 2022 16:13:13 +0200 Subject: [PATCH] Fix space handling in status URI (#2787) --- 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 df5440bfe..14f6cda96 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm @@ -298,7 +298,7 @@ sub do { # Update status if ( my $p = $self->HANDLER->tsv->{statusPipe} ) { $p->print( ( $req->user ? $req->user : $req->address ) . ' => ' - . $req->uri + . $req->{env}->{REQUEST_URI} . " $err\n" ); }