From 68c65af0466daa53ebdec4edee18095bbac48abe Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 15 Jun 2019 08:44:36 -0400 Subject: [PATCH] Remove unused Module\Directory::init method --- src/Module/Directory.php | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/src/Module/Directory.php b/src/Module/Directory.php index cdf43b8f95..667f08616f 100644 --- a/src/Module/Directory.php +++ b/src/Module/Directory.php @@ -20,9 +20,15 @@ use Friendica\Util\Strings; */ class Directory extends BaseModule { - public static function init() + public static function content() { $app = self::getApp(); + $config = $app->getConfig(); + + if (($config->get('system', 'block_public') && !local_user() && !remote_user()) || + ($config->get('system', 'block_local_dir') && !local_user() && !remote_user())) { + throw new HTTPException\ForbiddenException(L10n::t('Public access denied.')); + } if (local_user()) { $app->page['aside'] .= Widget::findPeople(); @@ -31,17 +37,6 @@ class Directory extends BaseModule unset($_SESSION['theme']); unset($_SESSION['mobile-theme']); } - } - - public static function content() - { - $app = self::getApp(); - $config = $app->getConfig(); - - if (($config->get('system', 'block_public') && !local_user() && !remote_user()) || - ($config->get('system', 'block_local_dir') && !local_user() && !remote_user())) { - throw new HTTPException\ForbiddenException(L10n::t('Public access denied.')); - } $output = ''; $entries = []; @@ -157,7 +152,7 @@ class Directory extends BaseModule $entry = [ 'id' => $contact['id'], - 'url' => Contact::magicLInk($profile_link), + 'url' => Contact::magicLink($profile_link), 'itemurl' => $itemurl, 'thumb' => ProxyUtils::proxifyUrl($contact[$photo_size], false, ProxyUtils::SIZE_THUMB), 'img_hover' => $contact['name'], -- 2.20.1