1
0
mirror of https://github.com/flarum/core.git synced 2025-10-29 06:26:17 +01:00

Merge pull request #3228 from flarum/as/v1.2_frontend_fixes

Some v1.2 frontend fixes
This commit is contained in:
Alexander Skvortsov
2021-12-27 20:24:53 -05:00
committed by GitHub
7 changed files with 52 additions and 22 deletions

View File

@@ -37,7 +37,7 @@ class BasicTitleDriver implements TitleDriverInterface
];
return $onHomePage || ! $document->title
? $this->translator->trans('core.views.meta_titles.without_page_title', $params)
: $this->translator->trans('core.views.meta_titles.with_page_title', $params);
? $this->translator->trans('core.lib.meta_titles.without_page_title', $params)
: $this->translator->trans('core.lib.meta_titles.with_page_title', $params);
}
}