Skip to content

Commit

Permalink
Merge pull request #2595 from igniterealtime/backport-2594-to-4.9
Browse files Browse the repository at this point in the history
[Backport 4.9] OF-2906: Fix setup page that checks config files
  • Loading branch information
akrherz authored Nov 11, 2024
2 parents c99e7c5 + 839ca79 commit 7eb8217
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xmppserver/src/main/webapp/setup/index.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
</c:if>

<c:choose>
<c:when test="${not jreVersionCompatible or not servlet22Installed or not jsp11Installed or not jiveJarsInstalled or not openfireHomeExists or not configFailedLoading}">
<c:when test="${not jreVersionCompatible or not servlet22Installed or not jsp11Installed or not jiveJarsInstalled or not openfireHomeExists or not configLocationExistsAndAccessible or not securityConfigLocationExistsAndAccessible}">
<div class="error">
<fmt:message key="setup.env.check.error"/> <fmt:message key="title"/> <fmt:message key="setup.title"/>.
</div>
Expand Down Expand Up @@ -265,7 +265,7 @@
<tr>
<td><img src="../images/check.gif" width="13" height="13"></td>
<td><fmt:message key="setup.env.check.config_found">
<fmt:param><c:out value="${configLocation}"/></fmt:param>
<fmt:param><c:out value="${securityConfigLocation}"/></fmt:param>
</fmt:message>
</td>
</tr>
Expand All @@ -274,7 +274,7 @@
<tr>
<td><img src="../images/x.gif" width="13" height="13"></td>
<td><fmt:message key="setup.env.check.config_not_loaded">
<fmt:param><c:out value="${configLocation}"/></fmt:param>
<fmt:param><c:out value="${securityConfigLocation}"/></fmt:param>
</fmt:message>
</td>
</tr>
Expand Down

0 comments on commit 7eb8217

Please sign in to comment.