Fix URL delimiter.
This commit is contained in:
parent
ad7154b344
commit
37d12144c2
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ class OC_Search_Provider_Contacts extends OC_Search_Provider{
|
||||||
$vcards = OC_Contacts_VCard::all($addressbook['id']);
|
$vcards = OC_Contacts_VCard::all($addressbook['id']);
|
||||||
foreach($vcards as $vcard){
|
foreach($vcards as $vcard){
|
||||||
if(substr_count(strtolower($vcard['fullname']), strtolower($query)) > 0){
|
if(substr_count(strtolower($vcard['fullname']), strtolower($query)) > 0){
|
||||||
$link = OCP\Util::linkTo('contacts', 'index.php').'?id='.urlencode($vcard['id']);
|
$link = OCP\Util::linkTo('contacts', 'index.php').'&id='.urlencode($vcard['id']);
|
||||||
$results[]=new OC_Search_Result($vcard['fullname'],'', $link,$l->t('Contact'));//$name,$text,$link,$type
|
$results[]=new OC_Search_Result($vcard['fullname'],'', $link,$l->t('Contact'));//$name,$text,$link,$type
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue