X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcompareParserCache.php;h=98441b60237c4033b1a32033d7a69121b085eba7;hb=66522e992899d87839608780d61060dbd0ae030c;hp=93fe6601e9ff51c757a8cc4872dbe4024e3cda05;hpb=e91fd2fc41cca86283ba1ad9158bc87038c9a416;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" );