From 0ff41b8ac8c74d9a9f776ecfd672531cc470f6b5 Mon Sep 17 00:00:00 2001 From: jeb228 Date: Fri, 22 Oct 2010 17:52:49 +0000 Subject: [PATCH] NIHVIVO-736 Fix JSP syntax errors, introduced by previous changes. --- webapp/web/siteAdmin/dataInput.jsp | 2 +- webapp/web/siteAdmin/siteConfiguration.jsp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/web/siteAdmin/dataInput.jsp b/webapp/web/siteAdmin/dataInput.jsp index 387c7572e..c8dda6e50 100644 --- a/webapp/web/siteAdmin/dataInput.jsp +++ b/webapp/web/siteAdmin/dataInput.jsp @@ -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)) { %>

Data Input

diff --git a/webapp/web/siteAdmin/siteConfiguration.jsp b/webapp/web/siteAdmin/siteConfiguration.jsp index 0ff2dce49..a32b57cbb 100644 --- a/webapp/web/siteAdmin/siteConfiguration.jsp +++ b/webapp/web/siteAdmin/siteConfiguration.jsp @@ -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)) { %>

Site Configuration

@@ -16,7 +16,7 @@
  • Tab management
  • -<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.DBA) { %> +<% if (loginBean.isLoggedInAtLeast(LoginStatusBean.DBA)) { %>
  • User accounts
  • <% } %>