From 34ee5c944c88cf7a8d424a2af9d712e7c9841073 Mon Sep 17 00:00:00 2001 From: Jeremy Deloche Date: Thu, 18 Dec 2025 15:35:03 +0100 Subject: [PATCH] LUT-31528 : ErrorPage, AccessDeniedException fix --- webapp/jsp/admin/ErrorPage.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/jsp/admin/ErrorPage.jsp b/webapp/jsp/admin/ErrorPage.jsp index 7dc8298a3..a81bd82dd 100644 --- a/webapp/jsp/admin/ErrorPage.jsp +++ b/webapp/jsp/admin/ErrorPage.jsp @@ -31,8 +31,8 @@ %> <% - TransactionManager.rollBackEveryTransaction( exception ); - if( exception instanceof fr.paris.lutece.portal.service.admin.AccessDeniedException ) + TransactionManager.rollBackEveryTransaction( exception.getCause( ) ); + if( exception.getCause( ) instanceof fr.paris.lutece.portal.service.admin.AccessDeniedException ) { if ( exception.getMessage( ) != null ) {