X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fdate_functions.inc;h=64fdfab4b8a28012f9a61e48d5207439e1df85ff;hb=0fd1eb74bd51889ce48a6ab5369e66a86cbe7da2;hp=c06dc4d323a8882e61726edd6894e09b11d33ee3;hpb=0c35858b77d57a2990c547523b0b62d3eefb9b89;p=fa-stable.git diff --git a/includes/date_functions.inc b/includes/date_functions.inc index c06dc4d3..64fdfab4 100644 --- a/includes/date_functions.inc +++ b/includes/date_functions.inc @@ -351,13 +351,7 @@ and converts to a yyyy/mm/dd format */ elseif ($date_system == 2) list($year, $month, $day) = islamic_to_gregorian($year, $month, $day); - // Pad with 0s if needed - if (strlen($month) == 1) - $month = "0$month"; - if (strlen($day) == 1) - $day = "0$day"; - - return $year."-".$month."-".$day; + return sprintf("%04d-%02d-%02d", $year, $month, $day); }// end of function function date1_greater_date2 ($date1, $date2)