Skip to content

Commit

Permalink
Fix rendering bug on Growl
Browse files Browse the repository at this point in the history
  • Loading branch information
asterd committed Mar 15, 2016
1 parent 3963916 commit 44568ad
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ private void encodeSeverityMessages(FacesContext facesContext, Growl uiGrowl, St
summary = BsfUtils.escapeHtml(summary);
detail = BsfUtils.escapeHtml(detail);
}
summary = summary.replace("'", "\\\'");
detail = detail.replace("'", "\\\'");
// Decode messageType to map bootstrap alert styles
String messageType = "success";
if("info".equals(severity)) {
Expand Down

0 comments on commit 44568ad

Please sign in to comment.