From 21ca86666fcbd61ef86a3532250c9921b496a21c Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Tue, 9 Mar 2004 12:55:54 +0000 Subject: [PATCH] history purging --- includes/Article.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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); -- 2.20.1