Commit 09d4835f authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Allow to disable RSS feed. JM-1172

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9414 b35dd754-fafc-0310-a699-88a17e54d16e
parent 9968550a
......@@ -775,7 +775,7 @@ index.update.alert=Update information
index.update.info=Server version {0} is now available. Click {1}here{2} to download or read the \
{3}change log{4} for more information.
index.cs_blog=Ignite Realtime News
index.cs_blog.unavilable=The Ignite Realtime feed is currently unavailable.
index.cs_blog.unavailable=The Ignite Realtime feed is currently unavailable.
# Locale Page
......
......@@ -2195,7 +2195,7 @@ muc.room.occupants.role=Rol
muc.room.occupants.title=Ocupantes en el cuarto
muc.room.occupants.user=Usuario
index.cs_blog=Novedades de Ignite Realtime
index.cs_blog.unavilable=No se ha podido leer novedades de Ignite Realtime
index.cs_blog.unavailable=No se ha podido leer novedades de Ignite Realtime
system.clustering.disabled=Clustering fue deshabilitado exitosamente.
system.clustering.enabled=Clustering fue habilitado exitosamente.
system.clustering.enabled.legend=Clustering Habilitado
......
......@@ -92,6 +92,7 @@
}
}
boolean rssEnabled = JiveGlobals.getBooleanProperty("rss.enabled", true);
%>
<html>
......@@ -354,6 +355,7 @@
</table>
<!-- </div> -->
</td>
<% if (rssEnabled) { %>
<td valign="top" width="40%">
<div id="jive-latest-activity">
......@@ -387,7 +389,7 @@
<% }
} else { %>
<fmt:message key="index.cs_blog.unavilable" />
<fmt:message key="index.cs_blog.unavailable" />
<% }
%><div class="jive-bottom-line"></div><%
......@@ -401,12 +403,13 @@
<% }
} else { %>
<fmt:message key="index.cs_blog.unavilable" />
<fmt:message key="index.cs_blog.unavailable" />
<% }
%>
</div>
</td>
<% } %>
</table>
<br>
......
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