Used `$this->isThreaded()` instead as suggested by @MrPetovan

This commit is contained in:
Roland Häder 2022-10-26 17:55:52 +02:00
parent 3c50d5b70f
commit 03e09627e4
No known key found for this signature in database
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 4 additions and 10 deletions

View File

@ -587,16 +587,10 @@ class Post
// Copy values/set defaults
$result['total_comments_num'] = $this->isToplevel() ? $total_children : 0;
$result['private'] = $item['private'];
$result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
$result['flatten'] = false;
$result['threaded'] = false;
if ($this->isThreaded()) {
$result['threaded'] = true;
} else {
$result['flatten'] = true;
}
$result['private'] = $item['private'];
$result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
$result['flatten'] = !$this->isThreaded();
$result['threaded'] = $this->isThreaded();
return $result;
}