* Add form to RCLinked and add to sp:specialpages
[lhc/web/wiklou.git] / includes / ParserCache.php
index d31f7ef..129b713 100644 (file)
@@ -2,10 +2,7 @@
 /**
  *
  * @addtogroup Cache
- */
-
-/**
- *
+ * @todo document
  */
 class ParserCache {
        /**
@@ -93,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<!-- Saved in parser cache with key $key and timestamp $now -->\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" );
                }
-               
        }
-       
+
 }
 
-?>
+