From b4a5376b91d830556338f5335b8cd5e04a9a98bf Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 27 Mar 2014 17:10:47 +0200 Subject: [PATCH] fix formats --- application/Espo/Services/Import.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/Espo/Services/Import.php b/application/Espo/Services/Import.php index 3d6bd18439..913180e714 100644 --- a/application/Espo/Services/Import.php +++ b/application/Espo/Services/Import.php @@ -52,10 +52,10 @@ class Import extends \Espo\Core\Services\Base protected $timeFormatsMap = array( 'HH:mm' => 'H:i', - 'hh:mm a' => 'G:i a', - 'hh:mma' => 'G:ia', - 'hh:mm A' => 'G:iA', - 'hh:mmA' => 'G:iA', + 'hh:mm a' => 'h:i a', + 'hh:mma' => 'h:ia', + 'hh:mm A' => 'h:iA', + 'hh:mmA' => 'h:iA', ); protected function getSelectManagerFactory()