diff options
Diffstat (limited to 'includes/RefreshLinksJob.php')
-rw-r--r-- | includes/RefreshLinksJob.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/includes/RefreshLinksJob.php b/includes/RefreshLinksJob.php index 367d994f..f95e5a50 100644 --- a/includes/RefreshLinksJob.php +++ b/includes/RefreshLinksJob.php @@ -2,6 +2,8 @@ /** * Background job to update links for a given title. + * + * @ingroup JobQueue */ class RefreshLinksJob extends Job { @@ -17,7 +19,7 @@ class RefreshLinksJob extends Job { global $wgParser; wfProfileIn( __METHOD__ ); - $linkCache =& LinkCache::singleton(); + $linkCache = LinkCache::singleton(); $linkCache->clear(); if ( is_null( $this->title ) ) { @@ -45,4 +47,3 @@ class RefreshLinksJob extends Job { return true; } } - |