X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=maintenance%2FcompareParserCache.php;h=98441b60237c4033b1a32033d7a69121b085eba7;hb=c9fefe75a031cb85940fce757b4aceb29ef969a3;hp=93fe6601e9ff51c757a8cc4872dbe4024e3cda05;hpb=05b8af8b91dac965c67571668187d1dc2511ae03;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" );