mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-09 23:48:28 +01:00
Fix address type fields
This commit is contained in:
parent
9097a41c4d
commit
e7417a850c
@ -84,7 +84,7 @@
|
|||||||
$astate = $fields["adr_one_region"];
|
$astate = $fields["adr_one_region"];
|
||||||
$azip = $fields["adr_one_postalcode"];
|
$azip = $fields["adr_one_postalcode"];
|
||||||
$acountry = $fields["adr_one_countryname"];
|
$acountry = $fields["adr_one_countryname"];
|
||||||
$atype = $fields["adr_one_type"]; if (!empty($atype)) { $atype = ';'.$atype; }
|
$atype = strtoupper($fields["adr_one_type"]); if (!empty($atype)) { $atype = ';'.$atype; }
|
||||||
$label = $fields["label"];
|
$label = $fields["label"];
|
||||||
|
|
||||||
$bstreet = $fields["adr_two_street"];
|
$bstreet = $fields["adr_two_street"];
|
||||||
@ -92,7 +92,7 @@
|
|||||||
$bstate = $fields["adr_two_region"];
|
$bstate = $fields["adr_two_region"];
|
||||||
$bzip = $fields["adr_two_postalcode"];
|
$bzip = $fields["adr_two_postalcode"];
|
||||||
$bcountry = $fields["adr_two_countryname"];
|
$bcountry = $fields["adr_two_countryname"];
|
||||||
$btype = $fields["adr_two_type"]; if (!empty($btype)) { $btype = ';'.$btype; }
|
$btype = strtoupper($fields["adr_two_type"]); if (!empty($btype)) { $btype = ';'.$btype; }
|
||||||
|
|
||||||
$company = $fields["org_name"];
|
$company = $fields["org_name"];
|
||||||
$dept = $fields["org_unit"];
|
$dept = $fields["org_unit"];
|
||||||
|
Loading…
Reference in New Issue
Block a user