mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
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
56fbee6da4
commit
fe4f9eabdd
@ -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