I understand that you are talking abount bookmark asset? isn't it?
The jsp file that is involved in rendering that kind of content is in:
portal-web/docroot//html/portlet/bookmarks/asset/full_content.jsp, here is the code:
1
2<%@ include file="/html/portlet/bookmarks/init.jsp" %>
3
4<%
5BookmarksEntry entry = (BookmarksEntry)request.getAttribute(WebKeys.BOOKMARKS_ENTRY);
6%>
7
8<aui:a href='<%= themeDisplay.getPathMain() + "/bookmarks/open_entry?entryId=" + entry.getEntryId() %>' target="_blank"><%= entry.getName() %> (<%= entry.getUrl() %>)</aui:a>
You should override it using an hook.
Hope it helps
Please sign in to flag this as inappropriate.