From 3e0a7705244d173aca7e6bce4c1db2d98b3c27c6 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 3 Aug 2011 13:12:55 +0000 Subject: [PATCH] Fix syntax error in r93820 --- includes/libs/CSSMin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/libs/CSSMin.php b/includes/libs/CSSMin.php index 200240853b..dad98c32c0 100644 --- a/includes/libs/CSSMin.php +++ b/includes/libs/CSSMin.php @@ -139,7 +139,7 @@ class CSSMin { $origLength = strlen( $match['file'][0] ); $lengthIncrease = strlen( $expanded ) - $origLength; $source = substr_replace( $source, wfExpandUrl( $match['file'][0], PROTO_RELATIVE ), - $match['file'][1], $origLength, + $match['file'][1], $origLength ); } // Move the offset to the end of the match, leaving it alone -- 2.20.1