mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-31 11:05:54 +01:00 
			
		
		
		
	fix: timestamp in queue, add post queue strings
This commit is contained in:
		| @@ -8,7 +8,11 @@ | |||||||
| 	"content": "Content", | 	"content": "Content", | ||||||
| 	"posted": "Posted", | 	"posted": "Posted", | ||||||
| 	"reply-to": "Reply to \"%1\"", | 	"reply-to": "Reply to \"%1\"", | ||||||
| 	"content-editable": "You can click on individual content to edit before posting.", | 	"content-editable": "Click on content to edit", | ||||||
| 	"category-editable": "Click to edit the category of this new topic", | 	"category-editable": "Click on category to edit", | ||||||
| 	"title-editable": "Click to edit the title of this new topic" | 	"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, | 		uid: caller.uid, | ||||||
| 		req: apiHelpers.buildReqObject(caller),	// For IP recording | 		req: apiHelpers.buildReqObject(caller),	// For IP recording | ||||||
| 		content: data.content, | 		content: data.content, | ||||||
| 		timestamp: data.timestamp, | 		timestamp: Date.now(), | ||||||
| 		fromQueue: false, | 		fromQueue: false, | ||||||
| 	}; | 	}; | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user