A couple more corrections to opac-userupdate. Needed to add additional fields to the email.

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
Owen Leonard 2008-02-28 10:33:25 +13:00 committed by Joshua Ferraro
parent ecfb460e81
commit 03d59711b2
2 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@
</li>
<li><label for="B_city">City, State:</label> <input id="B_city" type="text" value="<!-- TMPL_VAR name="B_city" -->" name="B_city" /></li>
<li><label for="B_zipcode">Zip Code</label> <input type="text" id="B_zipcode" value="<!-- TMPL_VAR NAME="B_zipcode" -->" /></li>
<li><label for="B_zipcode">Zip Code</label> <input type="text" id="B_zipcode" name="B_zipcode" value="<!-- TMPL_VAR NAME="B_zipcode" -->" /></li>
</ol>
</fieldset>
<fieldset class="brief">

View file

@ -49,8 +49,8 @@ my ( $borr, $flags ) = GetMemberDetails( $borrowernumber );
# handle the new information....
# collect the form values and send an email.
my @fields = (
'title', 'surname', 'firstname', 'phone',
'fax', 'streetaddress', 'emailaddress', 'city','phonepro',
'surname', 'firstname', 'phone',
'fax', 'address','address2','city','zipcode','phone','mobile','fax','phonepro', 'emailaddress','B_streetaddress','B_city','B_zipcode','dateofbirth','sex'
);
my $update;
my $updateemailaddress = C4::Context->preference('KohaAdminEmailAddress');