Merge pull request #8559 from annando/notices

Fix for "Undefined index: profile_url"
This commit is contained in:
Hypolite Petovan 2020-04-28 15:42:34 -04:00 committed by GitHub
commit 65fc64e931
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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(

View file

@ -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 />' : '');