From 6098f9609c95b2000b2bac21b35e061d39c91b9d Mon Sep 17 00:00:00 2001 From: Daniel Quathamer Date: Fri, 19 Dec 2025 09:04:55 +0100 Subject: [PATCH] Bugfix Impressum #7 (cherry picked from commit f335b370a5d7736d6ac809ac827569d6eab7c0d1) --- superx/edit/kern/show_html_content.jsp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/superx/edit/kern/show_html_content.jsp b/superx/edit/kern/show_html_content.jsp index 9190a82..7af742b 100644 --- a/superx/edit/kern/show_html_content.jsp +++ b/superx/edit/kern/show_html_content.jsp @@ -39,9 +39,10 @@ if(defaultMandantenIDParam != null && !defaultMandantenIDParam.toString().equals } //Impressum wird immer angezeigt, alles andere nur nach Login: if ( - (IdOutput.equals("IMPRINT") || + IdOutput.equals("IMPRINT") || ( request.getSession()!=null&&request.getSession().getAttribute("sessiontype")!=null&& - request.getSession().getAttribute("sessiontype").equals("superx"))) { + request.getSession().getAttribute("sessiontype").equals("superx")) + ) { Object mandantobject=request.getSession().getAttribute("MandantenID"); Object userid=request.getSession().getAttribute("UserID");