Followup to r92580 and r93820: r92580 duplicated the call to wfExpandUrl(), and r93820 caused them to get out of sync.

This commit is contained in:
Roan Kattouw 2011-08-14 13:35:06 +00:00
parent e214ea91df
commit b3599d8f8c

View file

@ -135,10 +135,10 @@ class CSSMin {
// This will not be the case if we're running outside of MW
$lengthIncrease = 0;
if ( function_exists( 'wfExpandUrl' ) ) {
$expanded = wfExpandUrl( $match['file'][0] );
$expanded = wfExpandUrl( $match['file'][0], PROTO_RELATIVE );
$origLength = strlen( $match['file'][0] );
$lengthIncrease = strlen( $expanded ) - $origLength;
$source = substr_replace( $source, wfExpandUrl( $match['file'][0], PROTO_RELATIVE ),
$source = substr_replace( $source, $expanded,
$match['file'][1], $origLength
);
}