Ticket 2895: exclude silenced users from popular notice lists

This commit is contained in:
Brion Vibber 2010-11-16 11:13:52 -08:00
parent 9b9db3b28a
commit 0265cdc1c9

View File

@ -76,6 +76,7 @@ class Popularity
'notice.rendered,notice.url,notice.created,notice.modified,' .
'notice.reply_to,notice.is_local,notice.source,notice.conversation, ' .
'notice.lat,notice.lon,location_id,location_ns,notice.repeat_of';
$qry .= ' HAVING \'silenced\' NOT IN (SELECT role FROM profile_role WHERE profile_id=notice.profile_id)';
$qry .= ' ORDER BY weight DESC';
$offset = $this->offset;