Skip to content

Commit

Permalink
Merge pull request #904 from chapter-three/deployment/20230531
Browse files Browse the repository at this point in the history
absolute urls fix
  • Loading branch information
baptisten authored May 31, 2023
2 parents 263e9db + da1509b commit 4cef234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/themes/custom/atrium/includes/page.inc
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function _atrium_global_translation_menu() {
$links_index = 0;
foreach ($tree as $item) {
$global_links[$links_index]['title'] = $item->link->getTitle();
$global_links[$links_index]['href'] = $host . $item->link->getUrlObject()->toString();
$global_links[$links_index]['href'] = $item->link->getUrlObject()->toString();
$links_index ++;
}
return $global_links;
Expand Down

0 comments on commit 4cef234

Please sign in to comment.