salvadordf / CEF4Delphi

CEF4Delphi is an open source project to embed Chromium-based browsers in applications made with Delphi or Lazarus/FPC for Windows, Linux and MacOS.
https://www.briskbard.com/forum/
Other
1.21k stars 372 forks source link

Bug in uCEFMiscFunctions.pas / DateTimeToCefTime function #383

Closed Gurkan-Aktas closed 3 years ago

Gurkan-Aktas commented 3 years ago

Currently day value of the converted date is set to month value.

Result.day_of_month := TempMonth;

must be changed to

Result.day_of_month := TempDay;

salvadordf commented 3 years ago

Thanks for reporting and fixing this issue! Please, download CEF4Delphi again to get the fix.