From 9b45e1ee0819e9685066001971f5e0498a9a24fc Mon Sep 17 00:00:00 2001 From: "Mr. E23" Date: Sun, 7 Mar 2004 17:27:00 +0000 Subject: [PATCH] Fixed parse error --- includes/SpecialMovepage.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/SpecialMovepage.php b/includes/SpecialMovepage.php index 8fb906948d..f8f0c6c2f0 100644 --- a/includes/SpecialMovepage.php +++ b/includes/SpecialMovepage.php @@ -170,7 +170,7 @@ class MovePageForm { # purge new title $wgInternalServer.$this->nt->getLocalURL(), # purge old title - $wgInternalServer.$this->ot->getLocalURL()) + $wgInternalServer.$this->ot->getLocalURL(), ); wfPurgeSquidServers($urlArr); # purge pages linking to new title @@ -225,9 +225,9 @@ class MovePageForm { /* this needs to be done after LinksUpdate */ $urlArr = Array( # purge new title - $nt->getInternalURL()), + $nt->getInternalURL(), # purge old title - $ot->getInternalURL()) + $ot->getInternalURL(), ); wfPurgeSquidServers($urlArr); # purge pages linking to new title -- 2.20.1