[Koha-cvs] koha/opac opac-userupdate.pl [rel_3_0]

Antoine Farnault antoine at koha-fr.org
Mon Jan 29 17:43:13 CET 2007


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_3_0
Changes by:	Antoine Farnault <toins>	07/01/29 16:43:13

Modified files:
	opac           : opac-userupdate.pl 

Log message:
	fix an incorrect hash key and add a missing one.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/opac/opac-userupdate.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.14.2.3&r2=1.14.2.4

Patches:
Index: opac-userupdate.pl
===================================================================
RCS file: /sources/koha/koha/opac/opac-userupdate.pl,v
retrieving revision 1.14.2.3
retrieving revision 1.14.2.4
diff -u -b -r1.14.2.3 -r1.14.2.4
--- opac-userupdate.pl	10 Jan 2007 10:52:58 -0000	1.14.2.3
+++ opac-userupdate.pl	29 Jan 2007 16:43:12 -0000	1.14.2.4
@@ -50,7 +50,7 @@
 # collect the form values and send an email.
 my @fields = (
     'title',     'surname',       'firstname',    'phone',
-    'faxnumber', 'streetaddress', 'emailaddress', 'city'
+    'fax', 'streetaddress', 'emailaddress', 'city','phonepro',
 );
 my $update;
 my $updateemailaddress = C4::Context->preference('KohaAdminEmailAddress');
@@ -97,6 +97,7 @@
         Subject => "User Request for update of Record.",
         Message => $message
     );
+
     if ( sendmail %mail ) {
 
         # do something if it works....





More information about the Koha-cvs mailing list