X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FupdateArticleCount.php;h=7964a21f82234d8a83087187e57dee97c18cd392;hb=f3b38123cbd8ac70dcdcbbd5489c588038fc317e;hp=730a1f64e3886d67261835c13befd19d9ae04e3c;hpb=5ce08fdacdb91f9a19649abaa63875aa60d33741;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/updateArticleCount.php b/maintenance/updateArticleCount.php index 730a1f64e3..7964a21f82 100644 --- a/maintenance/updateArticleCount.php +++ b/maintenance/updateArticleCount.php @@ -1,7 +1,7 @@ */ -require_once( __DIR__ . '/Maintenance.php' ); +require_once __DIR__ . '/Maintenance.php'; +/** + * Maintenance script to provide a better count of the number of articles + * and update the site statistics table, if desired. + * + * @ingroup Maintenance + */ class UpdateArticleCount extends Maintenance { public function __construct() { @@ -52,4 +58,4 @@ class UpdateArticleCount extends Maintenance { } $maintClass = "UpdateArticleCount"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN;