Fórum

Disable link for names in comments

Rob Hall, modificado 11 Anos atrás.

Disable link for names in comments

Junior Member Postagens: 47 Data de Entrada: 30/11/11 Postagens Recentes
We are working with Liferay EE 6.1 GA1 and have comments enabled on various articles. However, when a user posts a comment to those articles, it attaches their picture (if available) and name in profile links that expose a security hole and gives the user access to the Control Panel and other Liferay features. Is there a configuration setting to disable the link (i.e. just show the commentor's name without a link to their profile) or can something be overwritten w/ a hook to accompllsh this?
thumbnail
Samuel Kong, modificado 11 Anos atrás.

RE: Disable link for names in comments

Liferay Legend Postagens: 1902 Data de Entrada: 10/03/08 Postagens Recentes
Yes, you should create a JSP hook. Specifically, you'll probably want to look into /html/taglib/ui/discussion/page.jsp
Rob Hall, modificado 11 Anos atrás.

RE: Disable link for names in comments

Junior Member Postagens: 47 Data de Entrada: 30/11/11 Postagens Recentes
That worked. I created a hook for page.jsp and replaced this

<liferay-ui:user-display
userId="<%= message.getUserId() %>"
userName="<%= HtmlUtil.escape(message.getUserName()) %>"
displayStyle="<%= 2 %>"
/>

with
<% String userName = message.getUserName(); %>
<b> <%= userName %> </b>
thumbnail
Mazhar Alam, modificado 11 Anos atrás.

RE: Disable link for names in comments

Regular Member Postagens: 191 Data de Entrada: 25/11/11 Postagens Recentes
Helpful post!!!