Skip to content

Commit

Permalink
Fix transformURI() on ignoreIndexDir & ! htmlEscape (ezsystems#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkamps committed Jan 3, 2020
1 parent aee9ed7 commit 6f9b27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ezutils/classes/ezuri.php
Expand Up @@ -614,7 +614,7 @@ public static function transformURI( &$href, $ignoreIndexDir = false, $serverURL
$modifiedHref = eZClusterFileHandler::instance()->applyServerUri( $trimmedHref );
if ( $modifiedHref != $trimmedHref )
{
$href = $htmlEscape ? self::escapeHtmlTransformUri( $href ) : $href;
$href = $htmlEscape ? self::escapeHtmlTransformUri( $modifiedHref ) : $modifiedHref;
return true;
}
unset( $modifiedHref );
Expand Down

0 comments on commit 6f9b27f

Please sign in to comment.