From c431cf3c0e83f42d5c45c6090581cb266503a8ce Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 8 Mar 2016 08:54:40 +0000 Subject: [PATCH] fix wrong class-name used only for accounts in LDAP and addressbook in SQL --- api/src/Contacts/Storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Contacts/Storage.php b/api/src/Contacts/Storage.php index 8886b46a2d..49bb9af5d0 100755 --- a/api/src/Contacts/Storage.php +++ b/api/src/Contacts/Storage.php @@ -252,7 +252,7 @@ class Storage { if ($this->account_repository != $this->contact_repository) { - $class = 'EGroupware\\Contacts\\'.ucfirst($this->account_repository); + $class = 'EGroupware\\Api\\Contacts\\'.ucfirst($this->account_repository); $this->so_accounts = new $class(); $this->account_cols_to_search = $this->so_accounts->search_attributes; }