fix: hide titleRaw for deleted topics as well

v1.18.x
Barış Soner Uşaklı 4 years ago
parent b06f0ea20e
commit edf80cfb3b

@ -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;

Loading…
Cancel
Save