You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-06-16 23:47:38 +02:00
Fixed regression in section links introduced in v1.10.
This was introduced in an effort to make the html output XHTML 1.0 STRICT compliant because the standard does not allow / characters in anchors. However, the / characters were changed to . in the anchors but not in the links. For now revert the anchors to / so further though can be given to this issue.
This commit is contained in:
@ -229,7 +229,7 @@ sub sectionProcess
|
||||
# Working variables
|
||||
$strAnchor =
|
||||
($oSection->paramTest(XML_SECTION_PARAM_ANCHOR, XML_SECTION_PARAM_ANCHOR_VALUE_NOINHERIT) ? '' :
|
||||
(defined($strAnchor) ? "${strAnchor}." : '')) .
|
||||
(defined($strAnchor) ? "${strAnchor}/" : '')) .
|
||||
$oSection->paramGet('id');
|
||||
|
||||
# Create the section toc element
|
||||
|
Reference in New Issue
Block a user