[Koha-patches] [PATCH] bug 4197 fix opac patron update

Nicole Engard nengard at gmail.com
Tue Feb 16 12:16:01 CET 2010


---
 opac/opac-userupdate.pl |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opac/opac-userupdate.pl b/opac/opac-userupdate.pl
index b083779..8495d34 100755
--- a/opac/opac-userupdate.pl
+++ b/opac/opac-userupdate.pl
@@ -53,7 +53,7 @@ my $lib = GetBranchDetail($borr->{'branchcode'});
 # handle the new information....
 # collect the form values and send an email.
 my @fields = (
-    'surname','firstname','othernames','streetaddress','city','zipcode','country','phone','mobile','fax','phonepro', 'emailaddress','emailpro','B_streetnumber','B_streetaddress','B_city','B_zipcode','B_country','B_phone','B_email','dateofbirth','sex'
+    'surname','firstname','othernames','streetnumber','address','address2','city','zipcode','country','phone','mobile','fax','phonepro', 'emailaddress','emailpro','B_streetnumber','B_address','B_address2','B_city','B_zipcode','B_country','B_phone','B_email','dateofbirth','sex'
 );
 my $update;
 my $updateemailaddress = $lib->{'branchemail'};
@@ -105,12 +105,12 @@ EOF
         }
         
         # reconstruct the address
-        if($field eq "streetaddress") {
+        if($field eq "address") {
             $borrowerfield = "$streetnumber $address, $address2";
         }
         
         # reconstruct the alternate address
-        if($field eq "B_streetaddress") {
+        if($field eq "B_address") {
             $borrowerfield = "$B_streetnumber $B_address, $B_address2";
         }
         
-- 
1.5.6.5




More information about the Koha-patches mailing list