dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #14511
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 4958: (mobile) removed jsonEncode on period.name so that periods are correctly translated
------------------------------------------------------------
revno: 4958
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2011-10-14 14:54:36 +0200
message:
(mobile) removed jsonEncode on period.name so that periods are correctly translated
modified:
dhis-2/dhis-web/dhis-web-light/src/main/webapp/dhis-web-light/selectPeriod.vm
--
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-light/src/main/webapp/dhis-web-light/selectPeriod.vm'
--- dhis-2/dhis-web/dhis-web-light/src/main/webapp/dhis-web-light/selectPeriod.vm 2011-10-12 21:21:30 +0000
+++ dhis-2/dhis-web/dhis-web-light/src/main/webapp/dhis-web-light/selectPeriod.vm 2011-10-14 12:54:36 +0000
@@ -5,7 +5,7 @@
<ul>
#foreach( $period in $periods )
<li>
- <a href="dataEntry.action?organisationUnitId=$organisationUnitId&dataSetId=$dataSetId&periodId=$period.getExternalId()">$!encoder.jsonEncode( ${period.name} )</a>
+ <a href="dataEntry.action?organisationUnitId=$organisationUnitId&dataSetId=$dataSetId&periodId=$period.getExternalId()">${period.name}</a>
#if( $periodCompletedMap.get($period) )<img src="../dhis-web-light/images/check.jpg" />#end
</li>
#end