留言板

Disable link for names in comments

Rob Hall,修改在11 年前。

Disable link for names in comments

Junior Member 帖子: 47 加入日期: 11-11-30 最近的帖子
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,修改在11 年前。

RE: Disable link for names in comments

Liferay Legend 帖子: 1902 加入日期: 08-3-10 最近的帖子
Yes, you should create a JSP hook. Specifically, you'll probably want to look into /html/taglib/ui/discussion/page.jsp
Rob Hall,修改在11 年前。

RE: Disable link for names in comments

Junior Member 帖子: 47 加入日期: 11-11-30 最近的帖子
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,修改在11 年前。

RE: Disable link for names in comments

Regular Member 帖子: 191 加入日期: 11-11-25 最近的帖子
Helpful post!!!