Skip to content
This repository has been archived by the owner on Oct 29, 2019. It is now read-only.

Commit

Permalink
WL-1294 Don't filter the site description.
Browse files Browse the repository at this point in the history
  • Loading branch information
buckett committed May 31, 2012
1 parent 2c05b2f commit 2dc161d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,8 @@ else if (SPECIAL_WORKSITE.equals(state.getAttribute(SPECIAL)))
infoUrl = "http://" + infoUrl;
}
String description = StringUtil.trimToNull(data.getParameters().getString("description"));
description = FormattedText.processEscapedHtml(description);
// WL-1294 Don't filter the site description
//description = FormattedText.processEscapedHtml(description);

// update the site info
try
Expand Down

0 comments on commit 2dc161d

Please sign in to comment.