mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-23 17:00:24 +01:00
fix: hide titleRaw for deleted topics as well
This commit is contained in:
@@ -160,6 +160,9 @@ module.exports = function (Categories) {
|
||||
topics.forEach((topic) => {
|
||||
if (!topic.scheduled && topic.deleted && !topic.isOwner) {
|
||||
topic.title = '[[topic:topic_is_deleted]]';
|
||||
if (topic.hasOwnProperty('titleRaw')) {
|
||||
topics.titleRaw = '[[topic:topic_is_deleted]]';
|
||||
}
|
||||
topic.slug = topic.tid;
|
||||
topic.teaser = null;
|
||||
topic.noAnchor = true;
|
||||
|
||||
Reference in New Issue
Block a user