Updated the time format values in the email notification files.

This commit is contained in:
alext 2018-03-08 14:56:31 +01:00
parent 1caccb731a
commit 632f7539eb
1 changed files with 4 additions and 4 deletions

View File

@ -121,10 +121,10 @@ class Email {
switch ($company['time_format']) switch ($company['time_format'])
{ {
case 'HH:mm': case 'military':
$timeFormat = 'H:i'; $timeFormat = 'H:i';
break; break;
case 'h:mm tt': case 'regular':
$timeFormat = 'g:i A'; $timeFormat = 'g:i A';
break; break;
default: default:
@ -225,10 +225,10 @@ class Email {
switch ($company['time_format']) switch ($company['time_format'])
{ {
case 'HH:mm': case 'military':
$timeFormat = 'H:i'; $timeFormat = 'H:i';
break; break;
case 'h:mm tt': case 'regular':
$timeFormat = 'g:i A'; $timeFormat = 'g:i A';
break; break;
default: default: