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:
parent
e214ea91df
commit
b3599d8f8c
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue