JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
metaform sets main_body for site-wide template integration, and defaults to 'empty...
[wfpl.git] / time.php
index a3bc761..007d4b9 100644 (file)
--- a/time.php
+++ b/time.php
@@ -73,7 +73,7 @@ function clean_ymd($year, $month, $day) {
        return array($year, $month, $day);
 }
 
-# convert date string from mm/dd/yyyy to yyy-mm-dd
+# convert date string from mm/dd/yyyy to yyyy-mm-dd
 function mdy_to_ymd($date) {
        $date = ereg_replace('[^0-9/-]', '', $date);
        $date = ereg_replace('-', '/', $date);