Index: branches/NssMySQLAuth-rewrite/NssMySQLAuth/AccountManager/AmExport.php |
— | — | @@ -66,10 +66,10 @@ |
67 | 67 | $title = SpecialPage::getTitleFor( 'AccountManager' );
|
68 | 68 | $wgOut->setSubtitle( wfMsgExt( 'am-download-subtitle',
|
69 | 69 | array( 'parse', 'replaceafter' ),
|
70 | | - Xml::element( 'a', array( 'href' => $title->getLocalURL( 'format=csv') ),
|
| 70 | + Xml::element( 'a', array( 'href' => $title->getLocalURL( 'export=csv') ),
|
71 | 71 | wfMsg( 'am-download-cvs' )
|
72 | 72 | ),
|
73 | | - Xml::element( 'a', array( 'href' => $title->getLocalURL( 'format=csvexcel') ),
|
| 73 | + Xml::element( 'a', array( 'href' => $title->getLocalURL( 'export=csvexcel') ),
|
74 | 74 | wfMsg( 'am-download-cvsexcel' )
|
75 | 75 | )
|
76 | 76 | ) );
|
Index: branches/NssMySQLAuth-rewrite/NssMySQLAuth/AccountManager/AccountManager.i18n.php |
— | — | @@ -21,7 +21,7 @@ |
22 | 22 | 'am-users-by-status' => 'Users by status', |
23 | 23 | 'am-download-subtitle' => 'Download user list as $1 ($2)', |
24 | 24 | 'am-download-cvs' => 'CSV', |
25 | | - 'am-download-cvsexcel' => 'CSV semicolon separated', |
| 25 | + 'am-download-cvsexcel' => 'semicolon separated', |
26 | 26 | |
27 | 27 | 'am-rights' => 'rights', |
28 | 28 | 'am-save-changes' => 'Save changes', |
Index: branches/NssMySQLAuth-rewrite/NssMySQLAuth/AccountManager/AccountManager.php |
— | — | @@ -16,4 +16,3 @@ |
17 | 17 | $wgSpecialPages['AccountManager'] = 'SpecialAccountManager'; |
18 | 18 | |
19 | 19 | $wgUserProperties = array( 'address', 'city' ); |
20 | | -$wgUserActivityLevels = array( 'active', 'inactive' ); |
Index: branches/NssMySQLAuth-rewrite/NssMySQLAuth/AccountManager/AmUserView.php |
— | — | @@ -58,9 +58,9 @@ |
59 | 59 | $label = $prop; |
60 | 60 | |
61 | 61 | if ( $prop == 'active' ) { |
62 | | - global $wgUserActivityLevels; |
| 62 | + global $wgActivityModes; |
63 | 63 | $select = new XmlSelect( $amName, false, 'active' ); |
64 | | - foreach ( $wgUserActivityLevels as $level ) |
| 64 | + foreach ( $wgActivityModes as $level ) |
65 | 65 | $select->addOption( $level ); |
66 | 66 | |
67 | 67 | $input = $select->getHTML(); |