Issue Details (XML | Word | Printable)

Key: OPENEMPI-59
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Trivial Trivial
Assignee: odysseas
Reporter: ctoth
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
openempi

Address is stored into the city field in the AddPersonView

Created: 22/Mar/11 04:40 PM   Updated: 28/Jul/11 06:29 PM   Resolved: 28/Jul/11 06:29 PM
Component/s: User Interface
Affects Version/s: 2.1.3
Fix Version/s: 2.1.3

Time Tracking:
Not Specified

Environment:

Win 7


Tags: ui


 Description  « Hide

It's a copy-paste error. See line 215. (the Save button event handler) of AddPersonView.java:

openempi\openempi\webapp-web\src\main\java\org\openempi\webapp\client\mvc\edit\AddPersonView.java

attributes.put("city", address1.getValue());

should be:

attributes.put("city", city.getValue());



odysseas added a comment - 28/Jul/11 06:29 PM

Fixed