diff --git a/public/language/en-GB/post-queue.json b/public/language/en-GB/post-queue.json index 24eae3ad7d..bfaa367870 100644 --- a/public/language/en-GB/post-queue.json +++ b/public/language/en-GB/post-queue.json @@ -8,7 +8,11 @@ "content": "Content", "posted": "Posted", "reply-to": "Reply to \"%1\"", - "content-editable": "You can click on individual content to edit before posting.", - "category-editable": "Click to edit the category of this new topic", - "title-editable": "Click to edit the title of this new topic" + "content-editable": "Click on content to edit", + "category-editable": "Click on category to edit", + "title-editable": "Click on title to edit", + "reply": "Reply", + "topic": "Topic", + "accept": "Accept", + "reject": "Reject" } \ No newline at end of file diff --git a/src/api/topics.js b/src/api/topics.js index 3b1f8d0ee4..10ef0a8809 100644 --- a/src/api/topics.js +++ b/src/api/topics.js @@ -48,7 +48,7 @@ topicsAPI.reply = async function (caller, data) { uid: caller.uid, req: apiHelpers.buildReqObject(caller), // For IP recording content: data.content, - timestamp: data.timestamp, + timestamp: Date.now(), fromQueue: false, };