]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Directory.php
Add Twitter source debug to Debug\Babel
[friendica.git] / src / Module / Directory.php
index 6bf246a3701325694924403c6eea5c00c8edc340..3d03f10711935e17e1c755fddd62e240df823b56 100644 (file)
@@ -70,7 +70,7 @@ class Directory extends BaseModule
                        $gDirPath = Profile::zrl($dirURL, true);
                }
 
-               $pager = new Pager(DI::args()->getQueryString(), 60);
+               $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 60);
 
                $profiles = Profile::searchProfiles($pager->getStart(), $pager->getItemsPerPage(), $search);
 
@@ -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 />' : '');