dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #22787
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 11064: fix compile fail
------------------------------------------------------------
revno: 11064
committer: Long <Long@Long-Laptop>
branch nick: dhis2
timestamp: Wed 2013-05-29 11:13:57 +0700
message:
fix compile fail
modified:
dhis-2/dhis-web/dhis-web-sms/src/main/java/org/hisp/dhis/sms/outcoming/SearchPatientAction.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-web/dhis-web-sms/src/main/java/org/hisp/dhis/sms/outcoming/SearchPatientAction.java'
--- dhis-2/dhis-web/dhis-web-sms/src/main/java/org/hisp/dhis/sms/outcoming/SearchPatientAction.java 2013-05-24 10:15:02 +0000
+++ dhis-2/dhis-web/dhis-web-sms/src/main/java/org/hisp/dhis/sms/outcoming/SearchPatientAction.java 2013-05-29 04:13:57 +0000
@@ -151,9 +151,9 @@
{
organisationUnit = (searchBySelectedOrgunit) ? organisationUnit : null;
- total = patientService.countSearchPatients( searchTexts, organisationUnit );
+ total = patientService.countSearchPatients( searchTexts, organisationUnit, null );
this.paging = createPaging( total );
- patients = patientService.searchPatients( searchTexts, organisationUnit, null, paging.getStartPos(), paging
+ patients = patientService.searchPatients( searchTexts, organisationUnit, null, null, paging.getStartPos(), paging
.getPageSize() );
if ( !searchBySelectedOrgunit )