* (bug 6751) Fix preview of blanked section with edit on first preview option
[mediawiki.git] / StartProfiler.php
blobff51fbf13c805e8168383cc96365d2babe7e0f94
1 <?php
3 require_once( './includes/ProfilerStub.php' );
5 /**
6 * To use a profiler, delete the line above and add something like this:
8 * require_once( './includes/Profiler.php' );
9 * $wgProfiler = new Profiler;
11 * Or for a sampling profiler:
12 * if ( !mt_rand( 0, 100 ) ) {
13 * require_once( './includes/Profiler.php' );
14 * $wgProfiler = new Profiler;
15 * } else {
16 * require_once( './includes/ProfilerStub.php' );
17 * }
19 * Configuration of the profiler output can be done in LocalSettings.php