From 5fc9a46d844d8067952dac3bb217b8366b344733 Mon Sep 17 00:00:00 2001 From: Dmitry Petrov Date: Mon, 29 Dec 2025 19:55:48 -0500 Subject: [PATCH] fix: Generate correct URLs for `href` tags in Horde_Help --- lib/Horde/Help.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Horde/Help.php b/lib/Horde/Help.php index e635e471..0d15368a 100644 --- a/lib/Horde/Help.php +++ b/lib/Horde/Help.php @@ -169,7 +169,7 @@ protected function _processNode(DOMElement $node) break; case 'href': - $out .= Horde::link(Horde::url($GLOBALS['registry']->get('webroot', $child->getAttribute('app') . '/' . $child->getAttribute('url'))), null, '', '_blank') . $child->textContent . ''; + $out .= Horde::link(Horde::url($GLOBALS['registry']->get('webroot', $child->getAttribute('app')) . '/' . $child->getAttribute('url')), null, '', '_blank') . $child->textContent . ''; break; case 'b':