From: jason Date: Sat, 19 Apr 2008 03:32:13 +0000 (-0400) Subject: fixed dependancy on time.php in format_mdy_to_ymd() X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=0848aa3606b38ec51701960b9cbd84bea0fbd8ce fixed dependancy on time.php in format_mdy_to_ymd() --- diff --git a/format.php b/format.php index d058631..ae66713 100644 --- a/format.php +++ b/format.php @@ -169,6 +169,7 @@ function format_dollars($str) { # date is edited as mm/dd/yyyy but stored as yyyy-mm-dd function format_mdy_to_ymd($str) { + require_once('code/wfpl/time.php'); return mdy_to_ymd(format_oneline($str)); }