diff options
-rw-r--r-- | admin/include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index 22361a579..f29b469d6 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -367,7 +367,7 @@ function check_date_format( $date ) { // date arrives at this format : DD/MM/YYYY list($day,$month,$year) = explode( '/', $date ); - return checkdate ( $month, $day, $year ); + return @checkdate( $month, $day, $year ); } function date_convert( $date ) |