From f3acf5afe6a40bef231737dfcd732139cb4288cb Mon Sep 17 00:00:00 2001 From: tworrall Date: Tue, 11 Jun 2013 13:35:19 -0400 Subject: [PATCH] VIVO-65. for property groups, edit form was incorrect --- .../controller/freemarker/ListPropertyGroupsController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/freemarker/ListPropertyGroupsController.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/freemarker/ListPropertyGroupsController.java index 1cc66879b..27c9b38b7 100644 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/freemarker/ListPropertyGroupsController.java +++ b/webapp/src/edu/cornell/mannlib/vitro/webapp/controller/freemarker/ListPropertyGroupsController.java @@ -73,7 +73,7 @@ public class ListPropertyGroupsController extends FreemarkerHttpServlet { publicName = publicName.replace("\"","\\\""); publicName = publicName.replace("\'","\\\'"); try { - json += "{ \"name\": \"" + publicName + "\", "; + json += "{ \"name\": \"" + publicName + "\", "; } catch (Exception e) { json += "{ \"name\": \"" + publicName + "\", "; }