|
- {{vm.topic.title}}
+
+
+
+
{{'FORUMS.FIELDS.VIEWS' | translate}}: {{vm.topic.viewCount}},
diff --git a/modules/forums/server/controllers/forums.server.controller.js b/modules/forums/server/controllers/forums.server.controller.js
index 444c0625..37b5721b 100644
--- a/modules/forums/server/controllers/forums.server.controller.js
+++ b/modules/forums/server/controllers/forums.server.controller.js
@@ -456,6 +456,7 @@ exports.updateTopic = function (req, res) {
});
}
+ topic.title = req.body.title;
topic.content = req.body.content;
topic.updatedAt = Date.now();
topic.updatedBy = req.user;
|