Index: trunk/phase3/includes/SpecialWatchlist.php |
— | — | @@ -257,7 +257,8 @@ |
258 | 258 | $andLatest=''; |
259 | 259 | $limitWatchlist = 'LIMIT ' . intval( $wgUser->getOption( 'wllimit' ) ); |
260 | 260 | } else { |
261 | | - $andLatest= 'AND rc_this_oldid=page_latest'; |
| 261 | + # Top log Ids for a page are not stored |
| 262 | + $andLatest= 'AND (rc_this_oldid=page_latest OR rc_type=' . RC_LOG . ') '; |
262 | 263 | $limitWatchlist = ''; |
263 | 264 | } |
264 | 265 | |