From 7e62cd08487643060715e8b02e8650f363fc0b9a Mon Sep 17 00:00:00 2001 From: j2blake Date: Wed, 21 Dec 2011 23:02:24 +0000 Subject: [PATCH] NIHVIVO-3523 Oops. Some of the JSPs were using those RequestedAction classes that I converted to SimplePermissions. --- productMods/jenaIngest/ingestMenu.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/productMods/jenaIngest/ingestMenu.jsp b/productMods/jenaIngest/ingestMenu.jsp index 1eb2e525..882ec420 100644 --- a/productMods/jenaIngest/ingestMenu.jsp +++ b/productMods/jenaIngest/ingestMenu.jsp @@ -1,8 +1,8 @@ <%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%> <%@taglib prefix="vitro" uri="/WEB-INF/tlds/VitroUtils.tld" %> -<%@page import="edu.cornell.mannlib.vitro.webapp.auth.requestedAction.usepages.UseAdvancedDataToolsPages" %> -<% request.setAttribute("requestedActions", new UseAdvancedDataToolsPages()); %> +<%@page import="edu.cornell.mannlib.vitro.webapp.auth.permissions.SimplePermission" %> +<% request.setAttribute("requestedActions", SimplePermission.USE_ADVANCED_DATA_TOOLS_PAGES.ACTION); %>

Ingest Menu