From cf7e8ebf64b40603d04a55c0e727c83240eda078 Mon Sep 17 00:00:00 2001 From: hjkhjk54 Date: Thu, 14 Jul 2011 19:33:53 +0000 Subject: [PATCH] Updated to include context path for reorder url --- .../webapp/controller/freemarker/IndividualController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/freemarker/IndividualController.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/freemarker/IndividualController.java index 04886a170..3faacb482 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/freemarker/IndividualController.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/freemarker/IndividualController.java @@ -216,7 +216,7 @@ public class IndividualController extends FreemarkerHttpServlet { //Get special values for cases such as Menu Management editing private void includeSpecialEditingValues(VitroRequest vreq, Map body) { if(vreq.getAttribute(VitroRequest.SPECIAL_WRITE_MODEL) != null) { - body.put("reorderUrl", DisplayVocabulary.REORDER_MENU_URL); + body.put("reorderUrl", vreq.getContextPath() + DisplayVocabulary.REORDER_MENU_URL); } }