diff options
author | Brion Vibber <brion@users.mediawiki.org> | 2005-07-22 10:00:54 +0000 |
---|---|---|
committer | Brion Vibber <brion@users.mediawiki.org> | 2005-07-22 10:00:54 +0000 |
commit | 7a80ddd232cec09c8c9f1145918bcd7481487f13 (patch) | |
tree | dc90636bf2d9b0ed0b19d4b534c619d22489e258 /includes | |
parent | b928d7f50554577a2cfbe01c17a5cfba1b8bda5b (diff) | |
download | mediawikicore-7a80ddd232cec09c8c9f1145918bcd7481487f13.tar.gz mediawikicore-7a80ddd232cec09c8c9f1145918bcd7481487f13.zip |
Remove extra semicolon
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/10236
Diffstat (limited to 'includes')
-rw-r--r-- | includes/SpecialWatchlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 4d83271cd58e..e6fabf80fa26 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -15,7 +15,7 @@ require_once( 'WatchedItem.php' ); * constructor */ function wfSpecialWatchlist( $par ) { - global $wgUser, $wgOut, $wgLang, $wgTitle, $wgMemc, $wgRequest, $wgContLang;; + global $wgUser, $wgOut, $wgLang, $wgTitle, $wgMemc, $wgRequest, $wgContLang; global $wgUseWatchlistCache, $wgWLCacheTimeout, $wgDBname; global $wgRCShowWatchingUsers, $wgEnotifWatchlist, $wgShowUpdatedMarker; global $wgEnotifWatchlist; |