X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fdate_functions.inc;h=96ecb31bcdcf2967a2e90c6cb4173410f1da88bb;hb=d859c6081f650d22eba97b13a298b681148d0d6d;hp=2c99d059ae788fc439b6e678bb142799e012851e;hpb=7a353d4439f93fb13b90db544b5c84b4ff0dc487;p=fa-stable.git diff --git a/includes/date_functions.inc b/includes/date_functions.inc index 2c99d059..96ecb31b 100644 --- a/includes/date_functions.inc +++ b/includes/date_functions.inc @@ -344,8 +344,6 @@ function sql2date($date_) global $date_system; //for MySQL dates are in the format YYYY-mm-dd - if ($date_ == null || strlen($date_) == 0) - return ""; if (strpos($date_, "/")) { // In MySQL it could be either / or - @@ -355,6 +353,8 @@ function sql2date($date_) { list($year, $month, $day) = explode("-", $date_); } + if (!isset($day)) // data format error + return ""; if (strlen($day) > 4) { /*chop off the time stuff */