Changeset 196


Ignore:
Timestamp:
Oct 11, 2003, 4:17:07 PM (21 years ago)
Author:
z0rglub
Message:

If there is no date given in the form, function check_date_format doesn't
send a warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions.php

    r167 r196  
    368368  // date arrives at this format : DD/MM/YYYY
    369369  list($day,$month,$year) = explode( '/', $date );
    370   return checkdate ( $month, $day, $year );
     370  return @checkdate( $month, $day, $year );
    371371}
    372372
Note: See TracChangeset for help on using the changeset viewer.