]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Directory.php
Small fixes
[friendica.git] / src / Module / Directory.php
index ed1b70252313cbf8a1d80ce0fde510aad6df4e17..0709aa39748f147b890a08711eaab2eec12f6e56 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);
 
@@ -124,7 +124,7 @@ class Directory extends BaseModule
 
                $profile_link = $contact['profile_url'];
 
-               $pdesc = (($contact['pdesc']) ? $contact['pdesc'] . '<br />' : '');
+               $about = (($contact['about']) ? $contact['about'] . '<br />' : '');
 
                $details = '';
                if (strlen($contact['locality'])) {
@@ -176,7 +176,7 @@ class Directory extends BaseModule
                        'profile'      => $profile,
                        'location'     => $location_e,
                        'tags'         => $contact['pub_keywords'],
-                       'pdesc'        => $pdesc,
+                       'about'        => $about,
                        'homepage'     => $homepage,
                        'photo_menu'   => $photo_menu,