mirror of
				https://gitlab.com/comunic/comunicapiv2
				synced 2025-10-31 01:24:43 +00:00 
			
		
		
		
	Fix bad date
This commit is contained in:
		| @@ -16,6 +16,6 @@ export function time() : number { | ||||
| export function mysql_date() : string { | ||||
| 	const date = new Date(); | ||||
|  | ||||
| 	return date.getFullYear() + "-" + (date.getMonth()+1) + "-" + (date.getDate() + 1) | ||||
| 	return date.getFullYear() + "-" + (date.getMonth()+1) + "-" + (date.getDate()) | ||||
| 		+ " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds(); | ||||
| } | ||||
		Reference in New Issue
	
	Block a user