Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 9f733ae

Browse files
committed
update config
1 parent d720f0d commit 9f733ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apereo/cas/FederationServlet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) thro
6969
transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
7070
StringWriter token = new StringWriter();
7171
transformer.transform(new DOMSource(el), new StreamResult(token));
72-
out.print("<span id='assertion'>");
72+
out.print("<pre id='assertion'>");
7373
out.println(StringEscapeUtils.escapeXml11(token.toString()));
74-
out.print("<span id='assertion'>");
74+
out.print("</pre>");
7575
} catch (Exception ex) {
7676
out.println("Failed to transform cached element to string: " + ex.toString());
7777
ex.printStackTrace();

0 commit comments

Comments
 (0)