forked from extern/egroupware
"fix for bug #952: Fatal error: Undefined class name 'self' in class.bocontacts.inc.php on line 86
self:: is PHP5 :-("
This commit is contained in:
parent
d972768efc
commit
68eb676729
@ -859,7 +859,7 @@ class bocontacts extends socontacts
|
||||
function merge($ids)
|
||||
{
|
||||
$this->error = false;
|
||||
foreach(self::search(array('id'=>$ids),false) as $contact) // $this->search calls the extended search from ui!
|
||||
foreach(parent::search(array('id'=>$ids),false) as $contact) // $this->search calls the extended search from ui!
|
||||
{
|
||||
if ($contact['account_id'])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user