From: Brion Vibber Date: Mon, 23 Sep 2013 19:14:45 +0000 (-0700) Subject: Fix missing wfProfileOut call in HtmlFormatter X-Git-Tag: 1.31.0-rc.0~18699 X-Git-Url: http://git.cyclocoop.org/%24dirpuce/puce%24spip_lang_rtl.gif?a=commitdiff_plain;h=f6c9c2e044e1f529568b4885edd6c10418fab94b;p=lhc%2Fweb%2Fwiklou.git Fix missing wfProfileOut call in HtmlFormatter Followup to missing call in Ic276e1604c5718e8568e120ddfb9a8fc13a682fc Change-Id: I69623d565826aacaa884c1c0a3ffec46ca1fb465 --- diff --git a/includes/HtmlFormatter.php b/includes/HtmlFormatter.php index 99426ecb19..eb3e941a3b 100644 --- a/includes/HtmlFormatter.php +++ b/includes/HtmlFormatter.php @@ -133,6 +133,7 @@ class HtmlFormatter { $removals = $this->parseItemsToRemove(); if ( !$removals ) { + wfProfileOut( __METHOD__ ); return; }