record_log Date format is now Year - month - day

This commit is contained in:
sparkyx 2025-01-14 11:27:58 +01:00
parent 4fca2e9f90
commit 323838c8fd

View file

@ -1341,7 +1341,7 @@ function is_msie()
*/
function record_log($p_message)
{
$date=date('d.m.y');
$date=date('Y.m.d');
// variable: $handle_log resource on log file ,
$handle_log=fopen(NOALYSS_BASE."/log/noalyss-{$date}.log","a+");