Ovo je deo koda koji racuna vreme
// ZBOG RUSKE MASINE ((( OVO JE VEC BILO U SKRIPTI )))
if( month == 1 && day == 1 && tmphour >= 22 ) { day--; month = 12; year--; }
else if( day == 1 && tmphour >= 22 ) { day--; month--; }
else if( tmphour >= 22 ) day--;
format( time_string, sizeof( time_string ), "%s%d:%s%d~n~%s%d.%s%d.%d", (tmphour < 10) ? ("0") : (""), tmphour, (tmpminute < 10) ? ("0") : (""), tmpminute, (day < 10) ? ("0") : (""), day, (month < 10) ? ("0") : (""), month, year );
format( time_str, sizeof( time_str ), "%s%d:%s%d", (tmphour < 10) ? ("0") : (""), tmphour, (tmpminute < 10) ? ("0") : (""), tmpminute );
format( date_str, sizeof( date_str ), "%s%d.%s%d.%d", (day < 10) ? ("0") : (""), day, (month < 10) ? ("0") : (""), month, year );Takodje sam nasao i liniju koda u MYSQL importu,
SET time_zone = "+02:00";