Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +0.13.20 - 30 May 2009 |
| 6 | + Changed Configure special pages's order in Special:AdminLinks. |
| 7 | + |
5 | 8 | 0.13.19 - 25 May 2009 |
6 | 9 | * Added support for External Data, Semantic Forms, Semantic Drilldown, |
7 | 10 | Semantic MediaWiki and Semantic Result Formats extensions |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'description' => 'Allow authorised users to configure the wiki via a web-based interface', |
21 | 21 | 'descriptionmsg' => 'configure-desc', |
22 | | - 'version' => '0.13.19', |
| 22 | + 'version' => '0.13.20', |
23 | 23 | ); |
24 | 24 | |
25 | 25 | # Configuration part |
Index: trunk/extensions/Configure/Configure.func.php |
— | — | @@ -165,12 +165,12 @@ |
166 | 166 | * Adds links to Configure's special pages to the Special:AdminLinks page, |
167 | 167 | * defined by the Admin Links extension |
168 | 168 | */ |
169 | | -function efConfigureAddToAdminLinks( &$admin_links_tree ) { |
170 | | - $general_section = $admin_links_tree->getSection(wfMsg('adminlinks_general')); |
171 | | - $configure_row = new ALRow('configure'); |
172 | | - $configure_row->addItem(ALItem::newFromSpecialPage('Configure')); |
173 | | - $configure_row->addItem(ALItem::newFromSpecialPage('ViewConfig')); |
174 | | - $configure_row->addItem(ALItem::newFromSpecialPage('Extensions')); |
175 | | - $general_section->addRow($configure_row); |
| 169 | +function efConfigureAddToAdminLinks( &$adminLinksTree ) { |
| 170 | + $generalSection = $adminLinksTree->getSection( wfMsg( 'adminlinks_general' ) ); |
| 171 | + $configureRow = new ALRow( 'configure' ); |
| 172 | + $configureRow->addItem( ALItem::newFromSpecialPage( 'Configure' ) ); |
| 173 | + $configureRow->addItem( ALItem::newFromSpecialPage( 'Extensions' ) ); |
| 174 | + $configureRow->addItem( ALItem::newFromSpecialPage( 'ViewConfig' ) ); |
| 175 | + $generalSection->addRow( $configureRow ); |
176 | 176 | return true; |
177 | 177 | } |