From: Aryeh Gregor Date: Wed, 24 Mar 2010 19:47:56 +0000 (+0000) Subject: Fix extra space from r64084 X-Git-Tag: 1.31.0-rc.0~37371 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=3d2b54b4d317ff943611d4ca841b1ddb91be600f;p=lhc%2Fweb%2Fwiklou.git Fix extra space from r64084 --- diff --git a/skins/Vector.php b/skins/Vector.php index abe4ab7569..538c89ce0e 100644 --- a/skins/Vector.php +++ b/skins/Vector.php @@ -59,7 +59,7 @@ class SkinVector extends SkinTemplate { // THIS IS ONLY USEFUL FOR EXPERIMENTING WITH DIFFERNT STYLE OPTIONS! THIS WILL BE REMOVED IN THE NEAR FUTURE. if ( is_array( $wgVectorExtraStyles ) ) { foreach ( $wgVectorExtraStyles as $style ) { - $out->addStyle( 'vector /' . $style, 'screen' ); + $out->addStyle( 'vector/' . $style, 'screen' ); } } }