mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
trying to fix a php4-only error (?)
This commit is contained in:
parent
56ef840422
commit
e859918f83
@ -103,17 +103,7 @@
|
|||||||
'owner' => 'owner'
|
'owner' => 'owner'
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Used to flag an address as being:
|
var $adr_types = array();
|
||||||
domestic AND/OR international(default)
|
|
||||||
parcel(default)
|
|
||||||
postal(default)
|
|
||||||
*/
|
|
||||||
var $adr_types = array(
|
|
||||||
'dom' => lang('Domestic'),
|
|
||||||
'intl' => lang('International'),
|
|
||||||
'parcel' => lang('Parcel'),
|
|
||||||
'postal' => lang('Postal')
|
|
||||||
);
|
|
||||||
|
|
||||||
/* Used to set preferred number field */
|
/* Used to set preferred number field */
|
||||||
var $tel_types = array(
|
var $tel_types = array(
|
||||||
@ -156,6 +146,18 @@
|
|||||||
$this->grants = $GLOBALS['phpgw']->acl->get_grants('addressbook');
|
$this->grants = $GLOBALS['phpgw']->acl->get_grants('addressbook');
|
||||||
}
|
}
|
||||||
$this->account_id = $GLOBALS['phpgw_info']['user']['account_id'];
|
$this->account_id = $GLOBALS['phpgw_info']['user']['account_id'];
|
||||||
|
|
||||||
|
/* Used to flag an address as being:
|
||||||
|
domestic AND/OR international(default)
|
||||||
|
parcel(default)
|
||||||
|
postal(default)
|
||||||
|
*/
|
||||||
|
$this->adr_types = array(
|
||||||
|
'dom' => lang('Domestic'),
|
||||||
|
'intl' => lang('International'),
|
||||||
|
'parcel' => lang('Parcel'),
|
||||||
|
'postal' => lang('Postal')
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* send this the id and whatever fields you want to see */
|
/* send this the id and whatever fields you want to see */
|
||||||
|
Loading…
Reference in New Issue
Block a user