From fe4f9eabddc6ee98e3fc4b8ada5febd4553ec999 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 22 Jun 2007 12:44:17 +0000 Subject: [PATCH] fix for bug #952: Fatal error: Undefined class name 'self' in class.bocontacts.inc.php on line 86 self:: is PHP5 :-( --- addressbook/inc/class.bocontacts.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addressbook/inc/class.bocontacts.inc.php b/addressbook/inc/class.bocontacts.inc.php index df246b4052..7d706060f7 100755 --- a/addressbook/inc/class.bocontacts.inc.php +++ b/addressbook/inc/class.bocontacts.inc.php @@ -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']) {