From 671bb97746f20a23b17efb3bab4e222f47ad07f6 Mon Sep 17 00:00:00 2001 From: Platonides Date: Sun, 13 Jan 2013 18:01:40 +0100 Subject: [PATCH] Add wfProfileOut() missing in 74f581e34 Change-Id: Icc567e3f27dc8f9d0e405fcb9fa1103d9012acb3 --- includes/objectcache/DBABagOStuff.php | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.20.1