Skip to content

Commit

Permalink
fixed 0031907: Translation page should appear again in new window (#4096
Browse files Browse the repository at this point in the history
)
  • Loading branch information
katringross committed Mar 14, 2022
1 parent 1e96c7f commit 7e81c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Services/UICore/classes/Screen/PageContentProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function getFooterModification(CalledContexts $screen_context_stack) : ?F
if (\ilObjLanguageAccess::_checkTranslate() && !\ilObjLanguageAccess::_isPageTranslation()) {
$translation_url = \ilObjLanguageAccess::_getTranslationLink();
$translation_title = $this->dic->language()->txt('translation');
$links[] = $f->link()->standard($translation_title, $translation_url);
$links[] = $f->link()->standard($translation_title, $translation_url)->withOpenInNewViewport(true);
}

// accessibility control concept
Expand Down

0 comments on commit 7e81c51

Please sign in to comment.