From: Reedy Date: Wed, 27 Feb 2013 09:15:43 +0000 (+0000) Subject: Add missing parameter in handleWriteError call X-Git-Tag: 1.31.0-rc.0~20546 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/supprimer.php?a=commitdiff_plain;h=b3e34e3c4643c8fb550d23da208a298c20f7a577;p=lhc%2Fweb%2Fwiklou.git Add missing parameter in handleWriteError call Change-Id: If3ebf6f77d66121bac8e11d43582f1dbb3e88e12 --- diff --git a/includes/objectcache/SqlBagOStuff.php b/includes/objectcache/SqlBagOStuff.php index 5cc02d35a8..24047038e9 100644 --- a/includes/objectcache/SqlBagOStuff.php +++ b/includes/objectcache/SqlBagOStuff.php @@ -359,7 +359,7 @@ class SqlBagOStuff extends BagOStuff { ); $db->commit( __METHOD__ ); } catch ( DBQueryError $e ) { - $this->handleWriteError( $e ); + $this->handleWriteError( $e, $serverIndex ); return false; }