The code below lists only the recent change of each article and suppresses older changes.
An _unwanted_ side-effect is that also the log data is suppressed. Question: How can this be amended so that log data is _not_ suppressed in the RC view ?
LocalSettings.php:
$wgHooks['SpecialRecentChangesQuery'][] = 'onlyRecentRecentChanges'; function onlyRecentRecentChanges( &$conds, &$tables, &$join_conds, $opts, &$query_options = array() ) { $tables[] = 'page'; $conds[] = 'rc_this_oldid=page_latest'; return true; }
mediawiki-l@lists.wikimedia.org