VIVO-65. for property groups, edit form was incorrect

This commit is contained in:
tworrall 2013-06-11 13:35:19 -04:00
parent d74176f18d
commit f3acf5afe6

View file

@ -73,7 +73,7 @@ public class ListPropertyGroupsController extends FreemarkerHttpServlet {
publicName = publicName.replace("\"","\\\"");
publicName = publicName.replace("\'","\\\'");
try {
json += "{ \"name\": \"<a href='./editForm?uri="+URLEncoder.encode(pg.getURI(),"UTF-8")+"&amp;controller=Classgroup'>" + publicName + "</a>\", ";
json += "{ \"name\": \"<a href='./editForm?uri="+URLEncoder.encode(pg.getURI(),"UTF-8")+"&amp;controller=PropertyGroup'>" + publicName + "</a>\", ";
} catch (Exception e) {
json += "{ \"name\": \"" + publicName + "\", ";
}