Skip to content
This repository has been archived by the owner on Jun 3, 2020. It is now read-only.
Permalink
Browse files Browse the repository at this point in the history
1320452 - <c:out> is your friend
  • Loading branch information
ggainey committed Mar 28, 2016
1 parent f50742c commit 7920542
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Expand Up @@ -47,7 +47,9 @@
bound="false"
headerkey="grouplist.jsp.name"
sortattr="name" defaultsort="asc" filterattr="name" styleclass="${nameStyle}">
<a href="/rhn/groups/GroupDetail.do?sgid=${current.id}">${current.name}</a>
<a href="/rhn/groups/GroupDetail.do?sgid=${current.id}">
<c:out value="${current.name}"/>
</a>
</rl:column>
</rl:list>

Expand Down
Expand Up @@ -28,7 +28,9 @@
selected="${current.selected}"
disabled="${not current.selectable}"/>
<rl:column headerkey="system.history.snapshot.tagName">
<a href="/rhn/systems/details/history/snapshots/Rollback.do?sid=${param.sid}&ss_id=${current.ssId}">${current.name}</a>
<a href="/rhn/systems/details/history/snapshots/Rollback.do?sid=${param.sid}&ss_id=${current.ssId}">
<c:out value="${current.name}" />
</a>
</rl:column>
<rl:column headerkey="column.created">
${current.created}
Expand Down

0 comments on commit 7920542

Please sign in to comment.