Fix PHP notice - this function is called statically, so needs to be declared as such. Thanks to Juergen Nickelsen for reporting
This commit is contained in:
parent
94a4aa9bc6
commit
408a37ca94
1 changed files with 1 additions and 1 deletions
|
@ -514,7 +514,7 @@ class AddressBook {
|
|||
* @param array $row address book entry
|
||||
* @return string email address with real name prepended
|
||||
*/
|
||||
function full_address($row) {
|
||||
static function full_address($row) {
|
||||
global $data_dir, $username, $addrsrch_fullname;
|
||||
|
||||
// allow multiple addresses in one row (poor person's grouping - bah)
|
||||
|
|
Loading…
Add table
Reference in a new issue