In Admin - users - notifications the text states:
The following table shows all users that have notifications enabled.
However, in the notifiy.inc code (line 87) there is LIMIT 5:
$result = db_query('SELECT u.uid, u.name, u.mail, n.* FROM {users} u LEFT JOIN {notify} n ON u.uid = n.uid WHERE n.status = 1 AND u.status = 1 ORDER BY u.name LIMIT 5');
Hence only 5 notifications are acutally displayed.
This behaviour is confusing and should be changed to show all notifications in a multi page layout.
Comments
Comment #1
RobRoy commentedFix committed to HEAD. Please download the latest version from HEAD CVS and test with Drupal 4.7.x. Let me know if this fixes the problem and I'll backport the change to DRUPAL-4-7.
Comment #2
gravies commentedThe cvs version seems to work as expected with version 4.7.2. However, I only have 20 notifications right now so have not tested what happens with lots of users (eg. hundreds).
Comment #3
(not verified) commented