Index: trunk/extensions/ConfirmEdit/ConfirmEdit_body.php |
— | — | @@ -738,7 +738,7 @@ |
739 | 739 | * Show a page explaining what this wacky thing is. |
740 | 740 | */ |
741 | 741 | function showHelp() { |
742 | | - global $wgOut, $ceAllowConfirmedEmail; |
| 742 | + global $wgOut; |
743 | 743 | $wgOut->setPageTitle( wfMsg( 'captchahelp-title' ) ); |
744 | 744 | $wgOut->addWikiText( wfMsg( 'captchahelp-text' ) ); |
745 | 745 | if ( $this->storage->cookiesNeeded() ) { |
Index: trunk/extensions/ConfirmEdit/QuestyCaptcha.class.php |
— | — | @@ -57,7 +57,7 @@ |
58 | 58 | } |
59 | 59 | |
60 | 60 | function showHelp() { |
61 | | - global $wgOut, $ceAllowConfirmedEmail; |
| 61 | + global $wgOut; |
62 | 62 | $wgOut->setPageTitle( wfMsg( 'captchahelp-title' ) ); |
63 | 63 | $wgOut->addWikiText( wfMsg( 'questycaptchahelp-text' ) ); |
64 | 64 | if ( $this->storage->cookiesNeeded() ) { |
Index: trunk/extensions/ConfirmEdit/FancyCaptcha.class.php |
— | — | @@ -166,7 +166,7 @@ |
167 | 167 | } |
168 | 168 | |
169 | 169 | function showImage() { |
170 | | - global $wgOut, $wgRequest; |
| 170 | + global $wgOut; |
171 | 171 | |
172 | 172 | $wgOut->disable(); |
173 | 173 | |
Index: trunk/extensions/ExtensionDistributor/ExtensionDistributor_body.php |
— | — | @@ -280,7 +280,6 @@ |
281 | 281 | } |
282 | 282 | |
283 | 283 | fwrite( $sock, $cmd . "\000\000\000" ); |
284 | | - $encReponse = ''; |
285 | 284 | while ( $sock && !feof( $sock ) ) { |
286 | 285 | $encResponse .= fread( $sock, 8192 ); |
287 | 286 | } |
Index: trunk/extensions/MWSearch/luceneUpdate.php |
— | — | @@ -274,7 +274,7 @@ |
275 | 275 | * that might have been missed when the index updater daemon was broken. |
276 | 276 | */ |
277 | 277 | function rebuildDeleted( $since = null ) { |
278 | | - global $wgDBname, $options; |
| 278 | + global $wgDBname; |
279 | 279 | $fname = 'LuceneBuilder::rebuildDeleted'; |
280 | 280 | |
281 | 281 | if( is_null( $since ) ) { |
Index: trunk/extensions/SpamBlacklist/cleanup.php |
— | — | @@ -14,7 +14,6 @@ |
15 | 15 | */ |
16 | 16 | function cleanupArticle( $rev, $regexes, $match ) { |
17 | 17 | $title = $rev->getTitle(); |
18 | | - $reverted = false; |
19 | 18 | $revId = $rev->getId(); |
20 | 19 | while ( $rev ) { |
21 | 20 | $matches = false; |
Index: trunk/extensions/CentralAuth/SpecialMergeAccount.php |
— | — | @@ -251,7 +251,6 @@ |
252 | 252 | } |
253 | 253 | $password = $wgRequest->getText( 'wpPassword' ); |
254 | 254 | |
255 | | - $home = false; |
256 | 255 | $attached = array(); |
257 | 256 | $unattached = array(); |
258 | 257 | $ok = $globalUser->attemptPasswordMigration( $password, $attached, $unattached ); |
Index: trunk/extensions/DynamicPageList/DPL.php |
— | — | @@ -239,7 +239,6 @@ |
240 | 240 | } |
241 | 241 | |
242 | 242 | function formatCount( $numart ) { |
243 | | - global $wgLang; |
244 | 243 | if ( $this->mHeadingType == 'category' ) { |
245 | 244 | $message = 'categoryarticlecount'; |
246 | 245 | } else { |
Index: trunk/extensions/DynamicPageList/DPLLogger.php |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | * @return HTML error message |
64 | 64 | */ |
65 | 65 | function msgWrongParam( $paramvar, $val ) { |
66 | | - global $wgContLang; |
| 66 | + |
67 | 67 | $msgid = DPL_i18n::WARN_WRONGPARAM; |
68 | 68 | switch( $paramvar ) { |
69 | 69 | case 'namespace': |