------------------------------------------------------------
revno: 8241
committer: Tran Chau <[email protected]>
branch nick: dhis2
timestamp: Tue 2012-09-25 09:38:27 +0700
message:
  Minor fix for age of person in person list.
modified:
  dhis-2/dhis-api/src/main/java/org/hisp/dhis/patient/Patient.java


--
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-api/src/main/java/org/hisp/dhis/patient/Patient.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/patient/Patient.java	2012-09-11 07:31:17 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/patient/Patient.java	2012-09-25 02:38:27 +0000
@@ -418,11 +418,11 @@
 
         if ( age < 1 )
         {
-            return "( < 1 yr )";
+            return "< 1 yr";
         }
         else
         {
-            return "( " + age + " yr )";
+            return age + " yr";
         }
     }
 

_______________________________________________
Mailing list: https://launchpad.net/~dhis2-devs
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp

Reply via email to