From: Bartosz Dziewoński Date: Fri, 11 Oct 2013 21:01:57 +0000 (+0200) Subject: SpecialWatchlist: Remove old irrelevant comment X-Git-Tag: 1.31.0-rc.0~18526 X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=commitdiff_plain;h=f339e73e20298dd8f65675fcdd2d55d001bea18f;p=lhc%2Fweb%2Fwiklou.git SpecialWatchlist: Remove old irrelevant comment The code it was commenting has been removed in r10652 in 2005… Change-Id: I33846196c1f62800db2a37b6b03bdb47280af7d4 --- diff --git a/includes/specials/SpecialWatchlist.php b/includes/specials/SpecialWatchlist.php index 6987f6fcaf..11632a38cf 100644 --- a/includes/specials/SpecialWatchlist.php +++ b/includes/specials/SpecialWatchlist.php @@ -179,14 +179,6 @@ class SpecialWatchlist extends SpecialPage { $conds[] = 'rc_timestamp > ' . $dbr->addQuotes( $dbr->timestamp( time() - intval( $values['days'] * 86400 ) ) ); } - # If the watchlist is relatively short, it's simplest to zip - # down its entirety and then sort the results. - - # If it's relatively long, it may be worth our while to zip - # through the time-sorted page list checking for watched items. - - # Up estimate of watched items by 15% to compensate for talk pages... - # Toggles if ( $values['hideOwn'] ) { $conds[] = 'rc_user != ' . $user->getId();