Index: trunk/extensions/Mibbit/Mibbit_body.php |
— | — | @@ -19,7 +19,7 @@ |
20 | 20 | $this->setHeaders(); |
21 | 21 | |
22 | 22 | // Introduction message, explaining to users what this is etc. |
23 | | - $wgOut->addHTML( Xml::element( 'p', null, wfMsg( 'mibbit-header' ) ) ); |
| 23 | + $wgOut->addHTML( Xml::element( 'p', null, wfMsgExt( 'mibbit-header', array( 'parseinline' ) ) ); |
24 | 24 | |
25 | 25 | // Prepare query string to pass to widget. |
26 | 26 | $queryAssoc = array( |
Index: trunk/extensions/Mibbit/Mibbit.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | * |
10 | 10 | * @link http://www.mediawiki.org/wiki/Extension:Mibbit |
11 | 11 | * |
12 | | - * @author MinuteElectron <minuteelectron@googlemail.com> |
| 12 | + * @author Robert Leverington <robert@rhl.me.uk> |
13 | 13 | * @copyright Copyright © 2008 - 2009 Robert Leverington. |
14 | 14 | * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
15 | 15 | */ |
— | — | @@ -24,11 +24,12 @@ |
25 | 25 | 'descriptionmsg' => 'mibbit-desc', |
26 | 26 | 'author' => 'Robert Leverington', |
27 | 27 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Mibbit', |
28 | | - 'version' => '1.4', |
| 28 | + 'version' => '1.4.1', |
29 | 29 | ); |
30 | 30 | |
| 31 | +$dir = dirname( __FILE__ ) . '/'; |
| 32 | + |
31 | 33 | // Register special page. |
32 | | -$dir = dirname( __FILE__ ) . '/'; |
33 | 34 | $wgSpecialPages[ 'Mibbit' ] = 'Mibbit'; |
34 | 35 | $wgSpecialPageGroups[ 'Mibbit' ] = 'wiki'; |
35 | 36 | $wgAutoloadClasses[ 'Mibbit' ] = $dir . 'Mibbit_body.php'; |