From 739b6d6533fb54b1d7e6a641242c0103d73c487e Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 20 May 2023 10:31:05 -0400 Subject: [PATCH] Refer to correct contact field in Core/Search - Address https://github.com/friendica/friendica/issues/13025#issuecomment-1554498114 --- src/Core/Search.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/Search.php b/src/Core/Search.php index 8b114a468..4b3bb1c7c 100644 --- a/src/Core/Search.php +++ b/src/Core/Search.php @@ -87,7 +87,7 @@ class Search $user_data['network'], $contactDetails['cid'] ?? 0, $user_data['id'], - $user_data['tags'] + $user_data['keywords'] ); return new ResultList(1, 1, 1, [$result]); @@ -286,4 +286,4 @@ class Search return 'search?q=' . urlencode($search); } } -} \ No newline at end of file +}