
|
If you were logged in you would be able to see more operations.
|
|
|
|
Environment:
|
Liferay 5.1.0 and up
|
|
|
Asset Publisher portlet has ability to replace variables with tag values with the use of [$ name of tag category $] but the extra functionality causes special characters to be incorrectly encoded in the portlet title.
|
|
Description
|
Asset Publisher portlet has ability to replace variables with tag values with the use of [$ name of tag category $] but the extra functionality causes special characters to be incorrectly encoded in the portlet title. |
Show » |
|
String portletTitle = portletDisplay.getTitle();
to
String portletTitle = HtmlUtil.unescape(portletDisplay.getTitle());
Also add
<%@ page import="com.liferay.portal.kernel.util.HtmlUtil" %>
to init.jsp
I wasn't sure whether this applies anymore with the new tagging system so I'm writing the fix instead of checking it in.