Skip to content
Snippets Groups Projects

ISTWCMS-7266: Refactor link handling logic in UwCblLinks block.

Merged Igor Biki requested to merge feature/ISTWCMS-7266-ibiki-links_and_titles into 1.1.x
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -776,7 +776,7 @@ class UwCblLinks extends BlockBase implements ContainerFactoryPluginInterface {
$links['items'][$count][$key] = NULL;
}
elseif ($key === 'uri') {
$links['items'][$count][$key] = $this->cleanUpLink($item['link_info'][$key], prefix_base_path: TRUE);
$links['items'][$count][$key] = $this->cleanUpLink($item['link_info'][$key]);
}
else {
$links['items'][$count][$key] = $item['link_info'][$key];
@@ -1073,7 +1073,7 @@ class UwCblLinks extends BlockBase implements ContainerFactoryPluginInterface {
$link = $url;
// Remove base path, this will be used to validate url.
if ($base_path && str_starts_with(strtolower($link), $base_path)) {
if ($base_path && str_starts_with(strtolower($link), $base_path . '/')) {
$link = substr_replace($link, '', 0, strlen($base_path));
}
Loading