mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-11 08:28:43 +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)
|
function merge($ids)
|
||||||
{
|
{
|
||||||
$this->error = false;
|
$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'])
|
if ($contact['account_id'])
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user