X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FHome.php;h=f89920e54b6b8269c57cce10f418f2fb6a5b880c;hb=ab8997f9db910ba70c592bf106a7f5fc41a55b2d;hp=3d04849cf46d1c0f1158ef95b61d18847ae9168d;hpb=e6f61c2cc77f23ad7f2fd34bab3f9b374fc48618;p=friendica.git diff --git a/src/Module/Home.php b/src/Module/Home.php index 3d04849cf4..f89920e54b 100644 --- a/src/Module/Home.php +++ b/src/Module/Home.php @@ -4,7 +4,6 @@ namespace Friendica\Module; use Friendica\BaseModule; use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Core\Renderer; use Friendica\DI; use Friendica\Module\Security\Login; @@ -33,7 +32,7 @@ class Home extends BaseModule } $customHome = ''; - $defaultHeader = ($config->get('config', 'sitename') ? L10n::t('Welcome to %s', $config->get('config', 'sitename')) : ''); + $defaultHeader = ($config->get('config', 'sitename') ? DI::l10n()->t('Welcome to %s', $config->get('config', 'sitename')) : ''); $homeFilePath = $app->getBasePath() . '/home.html'; $cssFilePath = $app->getBasePath() . '/home.css'; @@ -42,7 +41,7 @@ class Home extends BaseModule $customHome = $homeFilePath; if (file_exists($cssFilePath)) { - $app->page['htmlhead'] .= ''; + DI::page()['htmlhead'] .= ''; } }