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); } }