Index: site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java =================================================================== --- site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java (revision 2922) +++ site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java (revision 2923) @@ -2927,7 +2927,13 @@ // .equalsIgnoreCase(SITE_MODE_SITEINFO)) { // context.put("backIndex", ""); // } - + context.put("campusDirectory", getCampusDirectory()); + if (selectedSect !=null){ + context.put("authorizers", selectedSect.getAuthorizer()); + } + else { + context.put("authorizers", ""); + } return (String) getContext(data).get("template") + TEMPLATE[53]; } @@ -7349,6 +7355,8 @@ String additional = StringUtil.trimToZero(params .getString("additional")); state.setAttribute(FORM_ADDITIONAL, additional); + + } } collectNewSiteInfo(siteInfo, state, params, @@ -11656,6 +11664,21 @@ this.eid = section.getEid(); this.title = section.getTitle(); this.category = section.getCategory(); + String authorizers = ""; + if (section.getEnrollmentSet() != null){ + Set instructorset = section.getEnrollmentSet().getOfficialInstructors(); + List list = new ArrayList(instructorset); + if (list != null) { + for (int i = 0; i < list.size(); i++) { + if (i == 0) { + authorizers = (String) list.get(i); + } else { + authorizers = authorizers + ", " + list.get(i); + } + } + } + } + this.authorizer = authorizers; this.categoryDescription = cms .getSectionCategoryDescription(section.getCategory()); if ("01.lct".equals(section.getCategory())) {