Commit ae5d0a6a authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Intellij failed to commit these for some odd reason.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10109 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4abea4a3
......@@ -449,7 +449,7 @@
<% if (webManager.getMultiUserChatManager().getMultiUserChatServicesCount() > 1) { %>
@<select name="mucName">
<% for (MultiUserChatService service : webManager.getMultiUserChatManager().getMultiUserChatServices()) { %>
<% if (service.isServicePrivate()) continue; %>
<% if (service.isHidden()) continue; %>
<option value="<%= service.getServiceName() %>"<%= service.getServiceDomain().equals(mucName) ? " selected='selected'" : "" %>><%= service.getServiceDomain() %></option>
<% } %>
</select>
......@@ -457,7 +457,7 @@
@<%
// We only have one service, none-the-less, we have to run through the list to get the first
for (MultiUserChatService service : webManager.getMultiUserChatManager().getMultiUserChatServices()) {
if (service.isServicePrivate()) {
if (service.isHidden()) {
// Private and hidden, skip it.
continue;
}
......
......@@ -39,7 +39,7 @@
}
else {
for (MultiUserChatService muc : webManager.getMultiUserChatManager().getMultiUserChatServices()) {
if (muc.isServicePrivate()) {
if (muc.isHidden()) {
// Private and hidden, skip it.
continue;
}
......@@ -114,7 +114,7 @@
-- <fmt:message key="muc.room.summary.service" />:
<select name="mucname" onchange="location.href='muc-room-summary.jsp?mucname=' + this.options[this.selectedIndex].value;">
<% for (MultiUserChatService service : webManager.getMultiUserChatManager().getMultiUserChatServices()) {
if (service.isServicePrivate()) {
if (service.isHidden()) {
// Private and hidden, skip it.
continue;
}
......
......@@ -176,7 +176,7 @@
}
int i = start;
for (MultiUserChatService service : services) {
if (service.isServicePrivate()) {
if (service.isHidden()) {
// Private and hidden, skip it.
continue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment