From: Wil Mahan Date: Thu, 23 Sep 2004 00:37:10 +0000 (+0000) Subject: Remove a single space that breaks a parser test X-Git-Tag: 1.5.0alpha1~1870 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=a3219c72b2851b9892bf2100934e77f460486401;p=lhc%2Fweb%2Fwiklou.git Remove a single space that breaks a parser test --- diff --git a/includes/Skin.php b/includes/Skin.php index 9b40f6d303..45f1f2a230 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -364,7 +364,7 @@ class Skin { } if ( 1 == $wgUser->getOption( 'hover' ) ) { - $r .= ' title ="' . $nt->getEscapedText() . '"'; + $r .= ' title="' . $nt->getEscapedText() . '"'; } return $r; }