• Hi.
    in line 418 of simple-csv-exporter-settings.php file we have this:

    $date_placeholder = date('m/d/yy', strtotime($ccsve_date_min));

    it’s not worked correctly. when we select 01/01/2021, after page saved, the min date will be changed to 01/01/2121

    this line should be changed to this:

    $date_placeholder = date('m/d/Y', strtotime($ccsve_date_min));

    and will worked correctly.

  • The topic ‘Min date selector has a problem’ is closed to new replies.