From 6490b6d3151ac45c26f1bc0678e3df1e2126624c Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 4 Mar 2018 16:41:35 -0800 Subject: [PATCH] Added missing 'd' (day of the month - no leading zero) mask to date handler. --- e107_handlers/date_handler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/e107_handlers/date_handler.php b/e107_handlers/date_handler.php index 34aa2b104..313e27577 100644 --- a/e107_handlers/date_handler.php +++ b/e107_handlers/date_handler.php @@ -235,6 +235,7 @@ class convert $convert = array( '%Y' => 'yyyy', // jquery-ui docs say 'yy' but yy produces '13' instead of '2013' '%d' => 'dd', + '%e' => 'd', '%m' => 'mm', '%B' => 'MM', // Full month name, based on the locale '%A' => 'DD', // A full textual representation of the day