summaryrefslogtreecommitdiff
path: root/StartProfiler.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2010-07-28 11:52:48 +0200
committerPierre Schmitz <pierre@archlinux.de>2010-07-28 11:52:48 +0200
commit222b01f5169f1c7e69762e0e8904c24f78f71882 (patch)
tree8e932e12546bb991357ec48eb1638d1770be7a35 /StartProfiler.php
parent00ab76a6b686e98a914afc1975812d2b1aaa7016 (diff)
update to MediaWiki 1.16.0
Diffstat (limited to 'StartProfiler.php')
-rw-r--r--StartProfiler.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/StartProfiler.php b/StartProfiler.php
deleted file mode 100644
index 3fcf69e6..00000000
--- a/StartProfiler.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-require_once( dirname(__FILE__).'/includes/ProfilerStub.php' );
-
-/**
- * To use a profiler, delete the line above and add something like this:
- *
- * require_once( dirname(__FILE__).'/includes/Profiler.php' );
- * $wgProfiler = new Profiler;
- *
- * Or for a sampling profiler:
- * if ( !mt_rand( 0, 100 ) ) {
- * require_once( dirname(__FILE__).'/includes/Profiler.php' );
- * $wgProfiler = new Profiler;
- * } else {
- * require_once( dirname(__FILE__).'/includes/ProfilerStub.php' );
- * }
- *
- * Configuration of the profiler output can be done in LocalSettings.php
- */
-
-