From: Domas Mituzas Date: Mon, 26 Dec 2005 13:03:10 +0000 (+0000) Subject: Profiling bits from live site X-Git-Tag: 1.6.0~879 X-Git-Url: http://git.cyclocoop.org//%27http:/jquery.khurshid.com/ifixpng.php/%27?a=commitdiff_plain;h=b46ca75fedc355a4e1efed40c3d57d62df202d3e;p=lhc%2Fweb%2Fwiklou.git Profiling bits from live site --- diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index 543422c4fc..ac4a8c5077 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -297,6 +297,8 @@ function rcOutputFeed( $rows, $feedFormat, $limit, $hideminor, $lastmod ) { function rcDoOutputFeed( $rows, &$feed ) { global $wgSitename, $wgFeedClasses, $wgContLanguageCode; + $fname = 'rcDoOutputFeed'; + wfProfileIn( $fname ); $feed->outHeader(); @@ -330,6 +332,7 @@ function rcDoOutputFeed( $rows, &$feed ) { $feed->outItem( $item ); } $feed->outFooter(); + wfProfileOut( $fname ); } /**