Index: trunk/extensions/DeleteBatch/DeleteBatch.body.php |
— | — | @@ -87,7 +87,7 @@ |
88 | 88 | * @param $err Mixed: error message or null if there's no error |
89 | 89 | */ |
90 | 90 | function showForm( $errorMessage = false ) { |
91 | | - global $wgOut, $wgUser, $wgScript; |
| 91 | + global $wgOut, $wgUser; |
92 | 92 | |
93 | 93 | if ( $errorMessage ) { |
94 | 94 | $wgOut->setSubtitle( wfMsgHtml( 'formerror' ) ); |
Index: trunk/extensions/Notificator/Notificator.body.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | |
6 | 6 | public static function notificator_Render( $parser, $receiver = '', $receiverLabel = '' ) { |
7 | 7 | |
8 | | - global $wgScript, $wgTitle; |
| 8 | + global $wgTitle; |
9 | 9 | |
10 | 10 | if ( !$receiverLabel ) { |
11 | 11 | $receiverLabel = $receiver; |
Index: trunk/extensions/Wikidata/OmegaWiki/SpecialDatasearch.php |
— | — | @@ -82,8 +82,7 @@ |
83 | 83 | } |
84 | 84 | |
85 | 85 | function go( $searchText ) { |
86 | | - global |
87 | | - $wgScript, $wgOut; |
| 86 | + global $wgOut; |
88 | 87 | |
89 | 88 | $expressionMeaningIds = getExpressionMeaningIds( $searchText ); |
90 | 89 | |
Index: trunk/extensions/Asksql/Asksql_body.php |
— | — | @@ -82,7 +82,7 @@ |
83 | 83 | } |
84 | 84 | |
85 | 85 | function doSubmit() { |
86 | | - global $wgOut, $wgUser, $wgServer, $wgScript, $wgLang, $wgContLang; |
| 86 | + global $wgOut, $wgUser, $wgServer, $wgLang, $wgContLang; |
87 | 87 | global $wgDBserver, $wgDBsqluser, $wgDBsqlpassword, $wgDBname, $wgSqlTimeout; |
88 | 88 | global $wgDBtype; |
89 | 89 | |