dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #32594
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 16624: minor fix in period genererator
------------------------------------------------------------
revno: 16624
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2014-09-03 13:55:58 +0700
message:
minor fix in period genererator
modified:
dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.period.js
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.period.js'
--- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.period.js 2014-05-06 09:46:20 +0000
+++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.period.js 2014-09-03 06:55:58 +0000
@@ -725,7 +725,7 @@
periods.push(period);
startDate = this.calendar.newDate(year, 10, 1);
- endDate = this.calendar.newDate(startDate).set(startDate.year() + 1, 'y').set(2, 'm');
+ endDate = this.calendar.newDate(startDate).set(startDate.year() + 1, 'y').set(3, 'm');
endDate.set(endDate.daysInMonth(endDate.month()), 'd');
period = {};