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:
Ralf Becker 2007-06-22 12:44:17 +00:00
parent 56fbee6da4
commit fe4f9eabdd

View File

@ -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'])
{