Skip to content
1 change: 1 addition & 0 deletions i18n/src/main/resources/openfire_i18n.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2925,6 +2925,7 @@ pubsub.node.subscribers.expires=Expires
pubsub.node.subscribers.table.info=Current node subscribers are listed in the following table:
pubsub.node.subscribers.table.no_subscribers=The Node has no subscribers.
pubsub.node.subscribers.deleted=Deleted subscription owned by {0} from the node.
pubsub.node.subscribers.confirm_delete=Are you sure you want to delete this subscriber?

# PubSub service tab

Expand Down
2 changes: 1 addition & 1 deletion xmppserver/src/main/webapp/pubsub-node-subscribers.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
<c:param name="csrf" value="${csrf}" />
<c:param name="owner" value="${owner}"/>
</c:url>
<a href="${url}" title="<fmt:message key="global.click_delete" />">
<a href="${url}" title="<fmt:message key="global.click_delete" />" onclick="return confirm('<fmt:message key="pubsub.node.subscribers.confirm_delete" />');">
<img src="images/delete-16x16.gif" alt="">
</a>
</td>
Expand Down
Loading