This works just kinda hate it oh well
This commit is contained in:
parent
8230feefa9
commit
104988e60d
|
@ -38,7 +38,11 @@ sub by_page($self, $this_page = 1) {
|
||||||
t.thread_author AS author,
|
t.thread_author AS author,
|
||||||
t.thread_title AS title,
|
t.thread_title AS title,
|
||||||
t.thread_body AS body,
|
t.thread_body AS body,
|
||||||
COUNT(r.*) AS remark_tally,
|
SUM(CASE
|
||||||
|
WHEN NOT r.hidden_status
|
||||||
|
THEN 1
|
||||||
|
ELSE 0
|
||||||
|
END) AS remark_tally,
|
||||||
t.bump_tally AS bump_tally
|
t.bump_tally AS bump_tally
|
||||||
FROM threads AS t
|
FROM threads AS t
|
||||||
LEFT JOIN remarks AS r
|
LEFT JOIN remarks AS r
|
||||||
|
|
Loading…
Reference in a new issue