diff options
author | Sam Reed <reedy@users.mediawiki.org> | 2010-07-24 19:11:52 +0000 |
---|---|---|
committer | Sam Reed <reedy@users.mediawiki.org> | 2010-07-24 19:11:52 +0000 |
commit | 04f68827d0e3e53ba2924ff7e9f67f6a7e485656 (patch) | |
tree | 99566d23bcb8004a863325a1fa35071f6fa5656e /includes/ChangesFeed.php | |
parent | ddf8405c14184cd061cbb356adb230cdafc2ea7e (diff) | |
download | mediawikicore-04f68827d0e3e53ba2924ff7e9f67f6a7e485656.tar.gz mediawikicore-04f68827d0e3e53ba2924ff7e9f67f6a7e485656.zip |
Removal of unused globals
Removal of one setting of a variable to '', then not using further
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/69839
Diffstat (limited to 'includes/ChangesFeed.php')
-rw-r--r-- | includes/ChangesFeed.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/ChangesFeed.php b/includes/ChangesFeed.php index 4a5a2d16d2da..5e0ebb163ada 100644 --- a/includes/ChangesFeed.php +++ b/includes/ChangesFeed.php @@ -45,8 +45,7 @@ class ChangesFeed { * @return null or true */ public function execute( $feed, $rows, $lastmod, $opts ) { - global $messageMemc, $wgFeedCacheTimeout; - global $wgSitename, $wgLang, $wgRenderHashAppend; + global $wgLang, $wgRenderHashAppend; if ( !FeedUtils::checkFeedOutput( $this->format ) ) { return; |