Skip to content
Permalink
Browse files Browse the repository at this point in the history
DELTASPIKE-1307 escape windowId
txs to md for the catch!
  • Loading branch information
struberg committed Dec 20, 2017
1 parent 1509247 commit 4e25023
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -77,7 +77,9 @@ public void encodeBegin(FacesContext context, UIComponent component) throws IOEx
ResponseWriter writer = context.getResponseWriter();
writer.write("<script type=\"text/javascript\">");
writer.write("(function(){");
writer.write("dswh.init('" + windowId + "','"
writer.write("dswh.init('");
writer.writeText(windowId, null);
writer.write("','"
+ clientWindowRenderMode.name() + "',"
+ maxWindowIdLength + ",{");

Expand Down

0 comments on commit 4e25023

Please sign in to comment.