Skip to content

Commit

Permalink
Merge pull request #790 from CalebSLane/develop
Browse files Browse the repository at this point in the history
fixes for haiti
  • Loading branch information
caseyi authored Dec 13, 2018
2 parents a32151d + 8c86acf commit bd758f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/WebContent/pages/datasubmission/dataSubmissionView.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
%>

<bean:define id="formName" value='<%=(String) request.getAttribute(IActionConstants.FORM_NAME)%>' />
<bean:define id="month" name="<%=formName%>" property="month"/>
<bean:define id="year" name="<%=formName%>" property="year" />
<bean:define id="month" name="<%=formName%>" property="month" type="java.lang.Integer"/>
<bean:define id="year" name="<%=formName%>" property="year" type="java.lang.Integer"/>


<script type="text/javascript">
Expand Down Expand Up @@ -65,7 +65,7 @@ function showsubmitting() {
function confirmSentWarning() {
var sentIndicators = [];
var message = "<bean:message key="datasubmission.warning.sent" arg0="<%=DateUtil.getMonthFromInt((int) month, false)%>" arg1="<%=Integer.toString((int) year)%>"/>";
var message = "<bean:message key='datasubmission.warning.sent' arg0='<%=DateUtil.getMonthFromInt(month, false)%>' arg1='<%=Integer.toString(year)%>'/>";
$jq("span.<%=DataIndicator.SENT%>").each(function() {
sentIndicators.push(this.id);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
</id>

<version name="lastupdated" column="LASTUPDATED" type="timestamp" access="field"/>
<property name="description" column="description" type="java.lang.String" />
<property name="english" column="english" type="java.lang.String" />
<property name="french" column="french" type="java.lang.String" />
<property name="description" column="description" type="java.lang.String" lazy="false"/>
<property name="english" column="english" type="java.lang.String" lazy="false"/>
<property name="french" column="french" type="java.lang.String" lazy="false"/>
</class>
</hibernate-mapping>

0 comments on commit bd758f0

Please sign in to comment.