Fix saving of city and province and address info

This commit is contained in:
james 2009-10-15 18:36:50 +00:00
parent ff7ab6f079
commit 566ae2d67f

View File

@ -508,6 +508,11 @@ function save_contact(){
$u['phonework']=$_POST['phonework'];
$u['phonecell']=$_POST['phonecell'];
$u['phonehome']=$_POST['phonehome'];
$u['address']=$_POST['address'];
$u['address2']=$_POST['address2'];
$u['city']=$_POST['city'];
$u['postalcode']=$_POST['postalcode'];
$u['province']=$_POST['province_code'];
$u['fax']=$_POST['fax'];
$u['email']=$_POST['email'];
$u['notes']=$_POST['notes'];
@ -683,7 +688,7 @@ function draw_contact_form($sponsor_id, $contact = null){
<tr><td><?=i18n("Address 1")?></td><td colspan="3"><input type="text" name="address" size="60" maxlength="64" value="<?=htmlspecialchars($contact['address'])?>" /></td></tr>
<tr><td><?=i18n("Address 2")?></td><td colspan="3"><input type="text" name="address2" size="60" maxlength="64" value="<?=htmlspecialchars($contact['address2'])?>" /></td></tr>
<tr><td><?=i18n("City")?></td><td><input id="city" type="text" name="city" size="16" maxlength="32" /></td>
<tr><td><?=i18n("City")?></td><td><input id="city" type="text" name="city" size="16" maxlength="32" value="<?=htmlspecialchars($contact['city'])?>" /></td>
<td><?=i18n($config['provincestate'])?></td><td>
<? emit_province_selector("province_code",$contact['province']); ?>
</td></tr>