From: Antoine Musso Date: Sat, 21 Apr 2007 21:35:21 +0000 (+0000) Subject: Kill some more whitespaces X-Git-Tag: 1.31.0-rc.0~53295 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=7ba6fcbbbec99869c3a405069b866cb11e54176b;p=lhc%2Fweb%2Fwiklou.git Kill some more whitespaces --- diff --git a/includes/ParserCache.php b/includes/ParserCache.php index ad95979c39..1489fcf9d1 100644 --- a/includes/ParserCache.php +++ b/includes/ParserCache.php @@ -90,31 +90,30 @@ class ParserCache { function save( $parserOutput, &$article, &$user ){ global $wgParserCacheExpireTime; $key = $this->getKey( $article, $user ); - + if( $parserOutput->getCacheTime() != -1 ) { - + $now = wfTimestampNow(); $parserOutput->setCacheTime( $now ); - + // Save the timestamp so that we don't have to load the revision row on view $parserOutput->mTimestamp = $article->getTimestamp(); - + $parserOutput->mText .= "\n\n"; wfDebug( "Saved in parser cache with key $key and timestamp $now\n" ); - + if( $parserOutput->containsOldMagic() ){ $expire = 3600; # 1 hour } else { $expire = $wgParserCacheExpireTime; } $this->mMemc->set( $key, $parserOutput, $expire ); - + } else { wfDebug( "Parser output was marked as uncacheable and has not been saved.\n" ); } - } - + } ?>