r90894 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r90893‎ | r90894 | r90895 >
Date:17:52, 27 June 2011
Author:reedy
Status:deferred
Tags:
Comment:
Add $wgExtensionCredits
Modified paths:
  • /trunk/extensions/FirePHP/FirePHP.php (modified) (history)

Diff [purge]

Index: trunk/extensions/FirePHP/FirePHP.php
@@ -8,7 +8,7 @@
99 * FirePHP is a plugin for Firebug which adds debugging info from HTTP headers
1010 * into the console output, which some will find handier than tailing a log file
1111 * or such forth.
12 - *
 12+ *
1313 * There's not a lot of fancy integration; everything's just output as a 'log' line.
1414 * You can use $wgFirePHP global (or call FirePHP::getInstance() yourself) to get
1515 * direct access to FirePHP's fancier features in test code.
@@ -25,6 +25,14 @@
2626
2727 $wgHooks['Debug'][] = 'efFirePHPDebug';
2828
 29+$wgExtensionCredits['other'][] = array(
 30+ 'path' => __FILE__,
 31+ 'name' => 'FirePHP',
 32+ 'url' => 'http://www.mediawiki.org/wiki/Extension:FirePHP',
 33+ 'author' => 'Brion Vibber',
 34+ 'description' => 'Allows the Firebug Extension for AJAX Development to work with MediaWiki',
 35+);
 36+
2937 global $wgFirePHP;
3038 $wgFirePHP = null;
3139
@@ -44,4 +52,4 @@
4553 $wgFirePHP->log( $text );
4654 }
4755 return true;
48 -}
\ No newline at end of file
 56+}

Status & tagging log