* Fixes the missing refresh after ignoring or unignoring a thread
* Use numeric values to make the JSON output happy
function ignored_init(App $a)
{
- $ignored = 0;
-
if (!local_user()) {
killme();
}
killme();
}
- if (!$thread['ignored']) {
- $ignored = true;
- }
+ // Numeric values are needed for the json output further below
+ $ignored = ($thread['ignored'] ? 0 : 1);
if ($thread['uid'] != 0) {
DBA::update('thread', ['ignored' => $ignored], ['iid' => $message_id]);