mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-06-19 14:51:21 +02:00
fix: timestamp in queue, add post queue strings
This commit is contained in:
committed by
Julian Lam
parent
833eff4ea4
commit
fa4c993e6a
@@ -8,5 +8,11 @@
|
||||
"content": "Content",
|
||||
"posted": "Posted",
|
||||
"reply-to": "Reply to \"%1\"",
|
||||
"content-editable": "You can click on individual content to edit before posting."
|
||||
}
|
||||
"content-editable": "You can click on individual content to edit before posting.",
|
||||
"category-editable": "Click on category to edit",
|
||||
"title-editable": "Click on title to edit",
|
||||
"reply": "Reply",
|
||||
"topic": "Topic",
|
||||
"accept": "Accept",
|
||||
"reject": "Reject"
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user