mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 21:11:55 +08:00
Canonical URL: Use UrlGenerator in place of extracting the url from request (#122)
This commit is contained in:
parent
4ff74d3289
commit
1b339267f8
|
@ -94,7 +94,7 @@ class Tags
|
|||
$document->title = $this->translator->trans('flarum-tags.forum.all_tags.meta_title_text');
|
||||
$document->meta['description'] = $this->translator->trans('flarum-tags.forum.all_tags.meta_description_text');
|
||||
$document->content = $this->view->make('tags::frontend.content.tags', compact('primaryTags', 'secondaryTags', 'children'));
|
||||
$document->canonicalUrl = $defaultRoute === '/tags' ? $this->url->to('forum')->base() : $request->getUri()->withQuery('');
|
||||
$document->canonicalUrl = $this->url->to('forum')->base().($defaultRoute === '/tags' ? '' : $request->getUri()->getPath());
|
||||
|
||||
return $document;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user