Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 4241

Show
Ignore:
Timestamp:
05/16/08 18:29:59 (2 months ago)
Author:
djazayeri
Message:

Fixing #754 - Old Identifier Numbers Show When Creating a New Patient

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/trunk/src/web/org/openmrs/web/controller/patient/NewPatientFormController.java

    r4156 r4241  
    585585    protected Object formBackingObject(HttpServletRequest request) throws ServletException { 
    586586                 
     587        newIdentifiers = new HashSet<PatientIdentifier>();  
    587588                Patient p = null; 
    588589                Integer id = null; 
     
    597598                        } 
    598599                        catch (NumberFormatException numberError) { 
    599                                 log.warn("Invalid userId supplied: '" + patientId + "'", numberError); 
     600                                log.warn("Invalid patientId supplied: '" + patientId + "'", numberError); 
    600601                        } 
    601602                        catch (ObjectRetrievalFailureException noUserEx) {