From: Jens Frank Date: Sun, 2 Jan 2005 22:09:54 +0000 (+0000) Subject: BUG#32 External links had a whitespace after the link when tidy was used X-Git-Tag: 1.5.0alpha1~1002 X-Git-Url: https://git.cyclocoop.org/admin/%7B%24admin_url%7Dmembres/Zigzagzogzagzig?a=commitdiff_plain;h=eb39f13f0432153ac54fd02fbf58e2e7aa2bb1d5;p=lhc%2Fweb%2Fwiklou.git BUG#32 External links had a whitespace after the link when tidy was used --- diff --git a/includes/Parser.php b/includes/Parser.php index 199e9b8acd..1d2bc625ba 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -1017,7 +1017,7 @@ class Parser } else { # Expand the URL for printable version if ( ! $sk->suppressUrlExpansion() ) { - $paren = " (" . htmlspecialchars ( $encUrl ) . ")"; + $paren = " (" . htmlspecialchars ( $encUrl ) . ")"; } else { $paren = ''; }