]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Directory.php
EOL removed
[friendica.git] / src / Module / Directory.php
index 0709aa39748f147b890a08711eaab2eec12f6e56..507da6b94292ef97e22da1735462ff2cd3789d6c 100644 (file)
@@ -75,7 +75,7 @@ class Directory extends BaseModule
                $profiles = Profile::searchProfiles($pager->getStart(), $pager->getItemsPerPage(), $search);
 
                if ($profiles['total'] === 0) {
-                       info(DI::l10n()->t('No entries (some entries may be hidden).') . EOL);
+                       notice(DI::l10n()->t('No entries (some entries may be hidden).'));
                } else {
                        if (in_array('small', $app->argv)) {
                                $photo = 'thumb';
@@ -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 />' : '');