Merge pull request #7272 from MrPetovan/bug/directory-links
Fix directory entry display (including wrong links)
This commit is contained in:
commit
808cb39125
|
@ -20,19 +20,6 @@ use Friendica\Util\Strings;
|
||||||
*/
|
*/
|
||||||
class Directory extends BaseModule
|
class Directory extends BaseModule
|
||||||
{
|
{
|
||||||
public static function init()
|
|
||||||
{
|
|
||||||
$app = self::getApp();
|
|
||||||
|
|
||||||
if (local_user()) {
|
|
||||||
$app->page['aside'] .= Widget::findPeople();
|
|
||||||
$app->page['aside'] .= Widget::follow();
|
|
||||||
} else {
|
|
||||||
unset($_SESSION['theme']);
|
|
||||||
unset($_SESSION['mobile-theme']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static function content()
|
public static function content()
|
||||||
{
|
{
|
||||||
$app = self::getApp();
|
$app = self::getApp();
|
||||||
|
@ -43,6 +30,14 @@ class Directory extends BaseModule
|
||||||
throw new HTTPException\ForbiddenException(L10n::t('Public access denied.'));
|
throw new HTTPException\ForbiddenException(L10n::t('Public access denied.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (local_user()) {
|
||||||
|
$app->page['aside'] .= Widget::findPeople();
|
||||||
|
$app->page['aside'] .= Widget::follow();
|
||||||
|
} else {
|
||||||
|
unset($_SESSION['theme']);
|
||||||
|
unset($_SESSION['mobile-theme']);
|
||||||
|
}
|
||||||
|
|
||||||
$output = '';
|
$output = '';
|
||||||
$entries = [];
|
$entries = [];
|
||||||
|
|
||||||
|
@ -83,7 +78,7 @@ class Directory extends BaseModule
|
||||||
'$globaldir' => L10n::t('Global Directory'),
|
'$globaldir' => L10n::t('Global Directory'),
|
||||||
'$gDirPath' => $gDirPath,
|
'$gDirPath' => $gDirPath,
|
||||||
'$desc' => L10n::t('Find on this site'),
|
'$desc' => L10n::t('Find on this site'),
|
||||||
'$contacts' => $profiles['entries'],
|
'$contacts' => $entries,
|
||||||
'$finding' => L10n::t('Results for:'),
|
'$finding' => L10n::t('Results for:'),
|
||||||
'$findterm' => (strlen($search) ? $search : ""),
|
'$findterm' => (strlen($search) ? $search : ""),
|
||||||
'$title' => L10n::t('Site Directory'),
|
'$title' => L10n::t('Site Directory'),
|
||||||
|
@ -157,7 +152,7 @@ class Directory extends BaseModule
|
||||||
|
|
||||||
$entry = [
|
$entry = [
|
||||||
'id' => $contact['id'],
|
'id' => $contact['id'],
|
||||||
'url' => Contact::magicLInk($profile_link),
|
'url' => Contact::magicLink($profile_link),
|
||||||
'itemurl' => $itemurl,
|
'itemurl' => $itemurl,
|
||||||
'thumb' => ProxyUtils::proxifyUrl($contact[$photo_size], false, ProxyUtils::SIZE_THUMB),
|
'thumb' => ProxyUtils::proxifyUrl($contact[$photo_size], false, ProxyUtils::SIZE_THUMB),
|
||||||
'img_hover' => $contact['name'],
|
'img_hover' => $contact['name'],
|
||||||
|
|
Loading…
Reference in a new issue