From: Tim Starling Date: Tue, 17 Feb 2009 03:28:54 +0000 (+0000) Subject: Profile RawPage X-Git-Tag: 1.31.0-rc.0~42859 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=b484417ddb7159fd150e52335678b51e7c13c0a7;p=lhc%2Fweb%2Fwiklou.git Profile RawPage --- diff --git a/includes/Wiki.php b/includes/Wiki.php index c34c6f821f..38f19c96f3 100644 --- a/includes/Wiki.php +++ b/includes/Wiki.php @@ -450,8 +450,10 @@ class MediaWiki { $article->view(); break; case 'raw': // includes JS/CSS + wfProfileIn( __METHOD__.'-raw' ); $raw = new RawPage( $article ); $raw->view(); + wfProfileOut( __METHOD__.'-raw' ); break; case 'watch': case 'unwatch':