Count via "distinct"

This commit is contained in:
Michael 2021-10-08 06:01:07 +00:00
parent a32c10b354
commit fdf47ef88f
1 changed files with 1 additions and 8 deletions

View File

@ -212,14 +212,7 @@ function message_content(App $a)
$o .= $header;
$total = 0;
$r = DBA::fetchFirst("SELECT count(*) AS `total`, ANY_VALUE(`created`) AS `created` FROM `mail`
WHERE `mail`.`uid` = ? GROUP BY `parent-uri` ORDER BY `created` DESC",
local_user()
);
if (DBA::isResult($r)) {
$total = $r['total'];
}
$total = DBA::count('mail', ['uid' => local_user()], ['distinct' => true, 'expression' => 'parent-uri']);
$pager = new Pager(DI::l10n(), DI::args()->getQueryString());