Skip to content

Commit

Permalink
SAM-3006 Use publishedSettings values (sakaiproject#3251)
Browse files Browse the repository at this point in the history
Fix up errornously using assessmentSettings values where
publishedSettings values are needed.
  • Loading branch information
master-bob authored and ottenhoff committed Aug 24, 2016
1 parent 416cedb commit 6adf45b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions samigo/samigo-app/src/webapp/jsf/author/publishedSettings.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
styleClass="form-control-label col-md-2"/>
<div class=" col-md-10">
<h:panelGrid rendered="#{publishedSettings.valueMap.description_isInstructorEditable==true}">
<samigo:wysiwyg rows="100" columns="400" value="#{assessmentSettings.description}" hasToggle="yes" mode="author" >
<samigo:wysiwyg rows="100" columns="400" value="#{publishedSettings.description}" hasToggle="yes" mode="author" >
<f:validateLength maximum="60000"/>
</samigo:wysiwyg>
</h:panelGrid>
Expand Down Expand Up @@ -269,7 +269,7 @@
<h:outputLabel styleClass="col-md-2" value="#{assessmentSettingsMessages.released_to} " />
<div class="col-md-10">
<h:selectOneMenu id="releaseTo" disabled="true" value="#{publishedSettings.firstTargetSelected}" >
<f:selectItems value="#{assessmentSettings.publishingTargets}" />
<f:selectItems value="#{publishedSettings.publishingTargets}" />
</h:selectOneMenu>
</div>
</div>
Expand Down Expand Up @@ -420,7 +420,7 @@
</div>
</h:panelGroup>

<h:panelGroup styleClass="form-group row" layout="block" rendered="#{assessmentSettings.valueMap.passwordRequired_isInstructorEditable==true}">
<h:panelGroup styleClass="form-group row" layout="block" rendered="#{publishedSettings.valueMap.passwordRequired_isInstructorEditable==true}">
<h:outputLabel value="#{assessmentSettingsMessages.high_security_secondary_id_pw}" styleClass="col-md-2 form-control-label"/>
<div class="col-md-10">
<h:outputLabel for="password" value="#{assessmentSettingsMessages.high_security_password}"/>
Expand Down

0 comments on commit 6adf45b

Please sign in to comment.