Alter wording
authorRob Church <robchurch@users.mediawiki.org>
Sat, 7 Jul 2007 05:00:24 +0000 (05:00 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Sat, 7 Jul 2007 05:00:24 +0000 (05:00 +0000)
RELEASE-NOTES
StartProfiler.php

index bd28452..5e1139e 100644 (file)
@@ -125,8 +125,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Show "undo" links in page histories
 * Option to jump to specified time period in user contributions
 * Improved feedback on "rollback success" page
-* New message, namespaceprotectedtext, shown to users unable to edit a page
-  because its namespace is protected.
+* Show distinct 'namespaceprotected' message to users when namespace protection
+  prevents page editing
 
 == Bugfixes since 1.10 ==
 
index 3fcf69e..1ffc54a 100644 (file)
@@ -1,22 +1,4 @@
 <?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
- */
-
-
+require_once( dirname(__FILE__).'/includes/Profiler.php' );
+$wgProfiler = new Profiler();
\ No newline at end of file