mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-12-03 15:24:09 +01:00
restrict addressbookprovider-search to its addressbook in oc7
backport of #857
This commit is contained in:
parent
72dcf24061
commit
ab5fa78126
@ -115,10 +115,12 @@ class AddressbookProvider implements \OCP\IAddressBook {
|
||||
INNER JOIN `$addrTable`
|
||||
ON `$addrTable`.id = `$contTable`.addressbookid
|
||||
WHERE
|
||||
`$contTable`.addressbookid = ? AND
|
||||
(
|
||||
SQL;
|
||||
|
||||
$params = array();
|
||||
$params[] = $this->addressBook->getMetaData()['id'];
|
||||
foreach ($searchProperties as $property) {
|
||||
$params[] = $property;
|
||||
$params[] = '%' . $pattern . '%';
|
||||
|
Loading…
Reference in New Issue
Block a user