Skip to content

Commit

Permalink
Fixed issue #11805: Timestamp hours does not display correctly in 'in…
Browse files Browse the repository at this point in the history
…vitations sent' window
  • Loading branch information
olleharstedt committed Oct 18, 2016
1 parent 91c2921 commit 67d2943
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/admin/token/tokenform.php
Expand Up @@ -111,7 +111,7 @@
{
$completedDBFormat = $completed;
$bCompletedValue = "1";
$completed = convertToGlobalSettingFormat($completed);
$completed = convertToGlobalSettingFormat($completed, true);
}
?>

Expand Down Expand Up @@ -238,15 +238,15 @@ class="YesNoDatePicker form-control"
{
$bSwitchValue = "1";
$sentDBValue = $sent;
$sent = convertToGlobalSettingFormat($sent);
$sent = convertToGlobalSettingFormat($sent, true);
}

$bRemindSwitchValue = "0";
if (isset($remindersent) && $remindersent!='N')
{
$bRemindSwitchValue = "1";
$remindersentDBValue = $remindersent;
$remindersent = convertToGlobalSettingFormat($remindersent);
$remindersent = convertToGlobalSettingFormat($remindersent, true);
}
?>

Expand Down

0 comments on commit 67d2943

Please sign in to comment.