From: Gabriel Wicke Date: Tue, 9 Mar 2004 12:55:54 +0000 (+0000) Subject: history purging X-Git-Tag: 1.3.0beta1~828 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=21ca86666fcbd61ef86a3532250c9921b496a21c;p=lhc%2Fweb%2Fwiklou.git history purging --- diff --git a/includes/Article.php b/includes/Article.php index 5dc0e39937..7e83b96822 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -430,7 +430,8 @@ class Article { # Squid purging if ( $wgUseSquid ) { $urlArr = Array( - $this->mTitle->getInternalURL() + $this->mTitle->getInternalURL(), + $this->mTitle->getInternalURL('action=history') ); wfPurgeSquidServers($urlArr); /* this needs to be done after LinksUpdate */ @@ -546,7 +547,8 @@ class Article { if ( $wgUseSquid ) { $urlArr = Array( - $this->mTitle->getInternalURL() + $this->mTitle->getInternalURL(), + $this->mTitle->getInternalURL('action=history') ); wfPurgeSquidServers($urlArr); } @@ -835,7 +837,8 @@ class Article { # Squid purging if ( $wgUseSquid ) { $urlArr = Array( - $this->mTitle->getInternalURL() + $this->mTitle->getInternalURL(), + $this->mTitle->getInternalURL('action=history') ); wfPurgeSquidServers($urlArr);