From: Platonides Date: Sun, 13 Jan 2013 17:01:40 +0000 (+0100) Subject: Add wfProfileOut() missing in 74f581e34 X-Git-Tag: 1.31.0-rc.0~21054^2 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=671bb97746f20a23b17efb3bab4e222f47ad07f6;p=lhc%2Fweb%2Fwiklou.git Add wfProfileOut() missing in 74f581e34 Change-Id: Icc567e3f27dc8f9d0e405fcb9fa1103d9012acb3 --- diff --git a/includes/objectcache/DBABagOStuff.php b/includes/objectcache/DBABagOStuff.php index ee2500dc59..ee29c11042 100644 --- a/includes/objectcache/DBABagOStuff.php +++ b/includes/objectcache/DBABagOStuff.php @@ -196,6 +196,7 @@ class DBABagOStuff extends BagOStuff { list( $val, $exptime ) = $this->decode( $val ); if ( $casToken !== $val ) { dba_close( $handle ); + wfProfileOut( __METHOD__ ); return false; }