From: Aaron Schulz Date: Wed, 14 Mar 2007 01:54:07 +0000 (+0000) Subject: *Allow log events X-Git-Tag: 1.31.0-rc.0~53756 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=c52227ae91689701bba182c89fd2a3372a3bce45;p=lhc%2Fweb%2Fwiklou.git *Allow log events --- diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 89047f44ee..2e660bd56d 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -257,7 +257,8 @@ function wfSpecialWatchlist( $par ) { $andLatest=''; $limitWatchlist = 'LIMIT ' . intval( $wgUser->getOption( 'wllimit' ) ); } else { - $andLatest= 'AND rc_this_oldid=page_latest'; + # Top log Ids for a page are not stored + $andLatest= 'AND (rc_this_oldid=page_latest OR rc_type=' . RC_LOG . ') '; $limitWatchlist = ''; }