mirror of
https://github.com/friendica/friendica
synced 2025-04-25 23:10:12 +00:00
post/thread views are renamed, search bugs fixed
This commit is contained in:
parent
574f778411
commit
1792046a4f
20 changed files with 83 additions and 77 deletions
|
@ -209,9 +209,9 @@ class ForumManager
|
|||
public static function countUnseenItems()
|
||||
{
|
||||
$stmtContacts = DBA::p(
|
||||
"SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `post-view`
|
||||
INNER JOIN `contact` ON `post-view`.`contact-id` = `contact`.`id`
|
||||
WHERE `post-view`.`uid` = ? AND `post-view`.`visible` AND NOT `post-view`.`deleted` AND `post-view`.`unseen`
|
||||
"SELECT `contact`.`id`, `contact`.`name`, COUNT(*) AS `count` FROM `post-user-view`
|
||||
INNER JOIN `contact` ON `post-user-view`.`contact-id` = `contact`.`id`
|
||||
WHERE `post-user-view`.`uid` = ? AND `post-user-view`.`visible` AND NOT `post-user-view`.`deleted` AND `post-user-view`.`unseen`
|
||||
AND `contact`.`network` IN (?, ?) AND `contact`.`contact-type` = ?
|
||||
AND NOT `contact`.`blocked` AND NOT `contact`.`hidden`
|
||||
AND NOT `contact`.`pending` AND NOT `contact`.`archive`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue