Index: trunk/extensions/WikimediaIncubator/InfoPage.css |
— | — | @@ -50,6 +50,6 @@ |
51 | 51 | #ca-nstab-main a { |
52 | 52 | color: black; |
53 | 53 | } |
54 | | -#siteNotice { |
55 | | - border-bottom: 1px solid silver; |
| 54 | +.subpages { |
| 55 | + display: none; |
56 | 56 | } |
\ No newline at end of file |
Index: trunk/extensions/WikimediaIncubator/WikimediaIncubator.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | 'path' => __FILE__, |
16 | 16 | 'name' => 'Wikimedia Incubator', |
17 | 17 | 'author' => 'SPQRobin', |
18 | | - 'version' => '4.3.1', |
| 18 | + 'version' => '4.3.2', |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:WikimediaIncubator', |
20 | 20 | 'descriptionmsg' => 'wminc-desc', |
21 | 21 | ); |
— | — | @@ -64,8 +64,8 @@ |
65 | 65 | $wgGroupPermissions['test-sysop']['block'] = true; |
66 | 66 | $wgGroupPermissions['test-sysop']['blockemail'] = true; |
67 | 67 | $wgGroupPermissions['test-sysop']['rollback'] = true; |
68 | | -$wgAddGroups['bureaucrat']['test-sysop'] = true; |
69 | | -$wgRemoveGroups['bureaucrat']['test-sysop'] = true; |
| 68 | +$wgAddGroups['bureaucrat'][] = 'test-sysop'; |
| 69 | +$wgRemoveGroups['bureaucrat'][] = 'test-sysop'; |
70 | 70 | |
71 | 71 | $wgExtensionMessagesFiles['WikimediaIncubator'] = $dir . 'WikimediaIncubator.i18n.php'; |
72 | 72 | $wgExtensionAliasesFiles['WikimediaIncubator'] = $dir . 'WikimediaIncubator.alias.php'; |
Index: trunk/extensions/WikimediaIncubator/SpecialViewUserLang.php |
— | — | @@ -84,7 +84,7 @@ |
85 | 85 | $userproject = $user->getOption( $wmincPref . '-project' ); |
86 | 86 | $userproject = ( $userproject ? $userproject : 'none' ); |
87 | 87 | $usercode = $user->getOption( $wmincPref . '-code' ); |
88 | | - $prefix = IncubatorTest::displayPrefix( $userproject, $usercode ); |
| 88 | + $prefix = IncubatorTest::displayPrefix( $userproject, $usercode ? $usercode : 'none' ); |
89 | 89 | if ( IncubatorTest::isContentProject( $userproject ) ) { |
90 | 90 | $testwiki = $linker->link( Title::newFromText( $prefix ) ); |
91 | 91 | } elseif ( $prefix == $wmincProjectSite['short'] ) { |