Users accessing
title=Special:RecentChanges
will always get
$wgDefaultUserOptions['rclimit']=50 items.
(execpt in the rare case that there really isn't that many items yet
in the recentchanges table.)
In contrast, users accessing
title=Special:RecentChanges&feed=rss (or feed=atom)
will get an inconsistent number of <item>s, only rarely all
$wgFeedLimit=$wgDefaultUserOptions['rclimit']=50.
The problem lies in
SpecialRecentchanges.php's function feedSetup().
It causes the steps
"1. filter, 2. limit"
to become the incorrect
"0. limit, 1. filter, 2. limit".
However it also has some other considerations mentioned... so I dare not tamper...
Version: 1.16.x
Severity: minor