mirror of
https://github.com/friendica/friendica
synced 2024-11-10 08:22:57 +00:00
Fix for "Undefined index: profile_url"
This commit is contained in:
parent
a61f61a051
commit
6f3b46217e
2 changed files with 3 additions and 3 deletions
|
@ -142,7 +142,7 @@ class Search
|
|||
$profiles = $results['profiles'] ?? [];
|
||||
|
||||
foreach ($profiles as $profile) {
|
||||
$profile_url = $profile['profile_url'] ?? '';
|
||||
$profile_url = $profile['url'] ?? '';
|
||||
$contactDetails = Contact::getDetailsByURL($profile_url, local_user());
|
||||
|
||||
$result = new ContactResult(
|
||||
|
|
|
@ -120,9 +120,9 @@ class Directory extends BaseModule
|
|||
*/
|
||||
public static function formatEntry(array $contact, $photo_size = 'photo')
|
||||
{
|
||||
$itemurl = (($contact['addr'] != "") ? $contact['addr'] : $contact['profile_url']);
|
||||
$itemurl = (($contact['addr'] != "") ? $contact['addr'] : $contact['url']);
|
||||
|
||||
$profile_link = $contact['profile_url'];
|
||||
$profile_link = $contact['url'];
|
||||
|
||||
$about = (($contact['about']) ? $contact['about'] . '<br />' : '');
|
||||
|
||||
|
|
Loading…
Reference in a new issue