From 85ebb7064ba7c0d189890af81458411e02fb02d8 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 19 May 2016 17:54:32 -0700 Subject: [PATCH] CRM/Utils/Mail/Incoming.php - Change 12-hour `Ymdhis` to 24-hour `YmdHis` --- CRM/Utils/Mail/Incoming.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/Mail/Incoming.php b/CRM/Utils/Mail/Incoming.php index 56a88aa5c4..24084e32a0 100644 --- a/CRM/Utils/Mail/Incoming.php +++ b/CRM/Utils/Mail/Incoming.php @@ -338,7 +338,7 @@ class CRM_Utils_Mail_Incoming { // format and move attachments to the civicrm area if (!empty($attachments)) { - $date = date('Ymdhis'); + $date = date('YmdHis'); $config = CRM_Core_Config::singleton(); for ($i = 0; $i < count($attachments); $i++) { $attachNum = $i + 1; -- 2.25.1