X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=maintenance%2FcompareParserCache.php;h=98441b60237c4033b1a32033d7a69121b085eba7;hb=62eb67626564f881e8151eb27039b4b7f13e3076;hp=93fe6601e9ff51c757a8cc4872dbe4024e3cda05;hpb=e696a662a96209e642fce66cb861ad18dc5a2371;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/compareParserCache.php b/maintenance/compareParserCache.php index 93fe6601e9..98441b6023 100644 --- a/maintenance/compareParserCache.php +++ b/maintenance/compareParserCache.php @@ -79,7 +79,7 @@ class CompareParserCache extends Maintenance { $this->output( "Found cache entry found for '{$title->getPrefixedText()}'..." ); $oldHtml = trim( preg_replace( '##Us', '', $parserOutputOld->getText() ) ); - $newHtml = trim( preg_replace( '##Us', '',$parserOutputNew->getText() ) ); + $newHtml = trim( preg_replace( '##Us', '', $parserOutputNew->getText() ) ); $diff = wfDiff( $oldHtml, $newHtml ); if ( strlen( $diff ) ) { $this->output( "differences found:\n\n$diff\n\n" );