From: Mr. E23 Date: Fri, 28 Nov 2003 03:21:55 +0000 (+0000) Subject: Fixed bug (missing global) for linkscc that caused links to deleted pages to remain... X-Git-Tag: 1.1.0~69 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=530d919f5c08c44f64ecfa6c7ebe0d65760fb060;p=lhc%2Fweb%2Fwiklou.git Fixed bug (missing global) for linkscc that caused links to deleted pages to remain blue. --- diff --git a/includes/Article.php b/includes/Article.php index 0b2b04a071..1cb0dd714c 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -854,7 +854,8 @@ class Article { function doDeleteArticle( $title ) { - global $wgUser, $wgOut, $wgLang, $wpReason, $wgDeferredUpdateList; + global $wgUser, $wgOut, $wgLang, $wpReason, $wgDeferredUpdateList, + $wgEnablePersistentLC; $fname = "Article::doDeleteArticle"; wfDebug( "$fname\n" );