NIHVIVO-736 Fix JSP syntax errors, introduced by previous changes.

This commit is contained in:
jeb228 2010-10-22 17:52:49 +00:00
parent a490d44617
commit 0ff41b8ac8
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.EDITOR) { %>
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.EDITOR)) { %>
<div class="pageBodyGroup">
<h3>Data Input</h3>

View file

@ -1,6 +1,6 @@
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.CURATOR) { %>
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.CURATOR)) { %>
<div class="pageBodyGroup">
<h3>Site Configuration</h3>
@ -16,7 +16,7 @@
<li><a href="listTabs?home=<%=portal.getPortalId()%>">Tab management</a></li>
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.DBA) { %>
<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.DBA)) { %>
<li><a href="listUsers?home=<%=portal.getPortalId()%>">User accounts</a></li>
<% } %>
</ul>