From 9db190c7e736ec8d063187d4241b59feaf7dc2d1 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 22 Jun 2011 11:28:20 +0200 Subject: update to MediaWiki 1.17.0 --- includes/SquidPurgeClient.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes/SquidPurgeClient.php') diff --git a/includes/SquidPurgeClient.php b/includes/SquidPurgeClient.php index 65da5c1a..1b315e5f 100644 --- a/includes/SquidPurgeClient.php +++ b/includes/SquidPurgeClient.php @@ -265,7 +265,7 @@ class SquidPurgeClient { $this->markDown(); return; } - list( $all, $major, $minor, $status, $reason ) = $m; + list( , , , $status, $reason ) = $m; $status = intval( $status ); if ( $status !== 200 && $status !== 404 ) { $this->log( "unexpected status code: $status $reason" ); @@ -356,12 +356,12 @@ class SquidPurgeClientPool { } foreach ( $readSockets as $key => $socket ) { - list( $clientIndex, $i ) = explode( '/', $key ); + list( $clientIndex, ) = explode( '/', $key ); $client = $this->clients[$clientIndex]; $client->doReads(); } foreach ( $writeSockets as $key => $socket ) { - list( $clientIndex, $i ) = explode( '/', $key ); + list( $clientIndex, ) = explode( '/', $key ); $client = $this->clients[$clientIndex]; $client->doWrites(); } -- cgit v1.2.2