X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fdate_functions.inc;h=089eeb7e3fbc3c730ff0906ee53b677f1caa4920;hb=117a47981e773ef0ac7aafaf5984978c59c6947a;hp=24f3b8f8b78bb1e52be9cd8056aa6bc77de457f4;hpb=818719f38b8327cdca616d58b13913dbd174d96a;p=fa-stable.git diff --git a/includes/date_functions.inc b/includes/date_functions.inc index 24f3b8f8..089eeb7e 100644 --- a/includes/date_functions.inc +++ b/includes/date_functions.inc @@ -1,13 +1,13 @@ . + See the License here . ***********************************************************************/ /* date validation and parsing functions @@ -141,6 +141,19 @@ function Now() else return date("H:i"); } +// +// Retrieve and optionaly set default date for new document. +// +function new_doc_date($date=null) +{ + if (isset($date)) + $_SESSION['_default_date'] = $date; + + if (!isset($_SESSION['_default_date']) || !sticky_doc_date()) + $_SESSION['_default_date'] = Today(); + + return $_SESSION['_default_date']; +} function is_date_in_fiscalyear($date, $convert=false) { @@ -347,6 +360,8 @@ and converts to a yyyy/mm/dd format */ $year = substr($date_,0,4); } } + else + $year = $month = $day = 0; //to modify assumption in 2030 if ($date_system == 0)