diff options
Diffstat (limited to 'includes/HTMLFileCache.php')
-rw-r--r-- | includes/HTMLFileCache.php | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/includes/HTMLFileCache.php b/includes/HTMLFileCache.php index a7466814..ba2196eb 100644 --- a/includes/HTMLFileCache.php +++ b/includes/HTMLFileCache.php @@ -1,7 +1,8 @@ <?php /** * Contain the HTMLFileCache class - * @addtogroup Cache + * @file + * @ingroup Cache */ /** @@ -10,11 +11,13 @@ * emergency abort/fallback to cache. * * Global options that affect this module: - * $wgCachePages - * $wgCacheEpoch - * $wgUseFileCache - * $wgFileCacheDirectory - * $wgUseGzip + * - $wgCachePages + * - $wgCacheEpoch + * - $wgUseFileCache + * - $wgFileCacheDirectory + * - $wgUseGzip + * + * @ingroup Cache */ class HTMLFileCache { var $mTitle, $mFileCache; @@ -153,5 +156,3 @@ class HTMLFileCache { } } - - |