Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. Localisation updates are done |
3 | 3 | through translatewiki.net and are not listed here. |
4 | 4 | |
| 5 | +0.17.1 - 14 January 2012 |
| 6 | + Fixed a JavaScript error. |
| 7 | + |
5 | 8 | 0.17.0 - 13 January 2012 |
6 | 9 | Rewrote the extension to use local context instead of global variables where |
7 | 10 | possible. |
Index: trunk/extensions/Configure/Configure.js |
— | — | @@ -147,7 +147,7 @@ |
148 | 148 | var startName = 'wp' + table.attr( 'id' ); |
149 | 149 | table.chidren( 'tr' ).each( function( i ) { |
150 | 150 | if ( i == 0 ) { |
151 | | - continue; |
| 151 | + return; |
152 | 152 | } |
153 | 153 | var inputs = $( this ).chidren( 'input' ); |
154 | 154 | inputs[0].attr( 'name', startName + '-key-' + (i - 1) ); |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ), |
19 | 19 | 'url' => 'https://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.17.0', |
| 21 | + 'version' => '0.17.1', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |