Skip to content

Commit

Permalink
SAK-41193 - Earliest time is displayed as 0 AM in weekly and daily vi…
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmerino authored and ern committed Feb 12, 2019
1 parent 026ff10 commit d6d601f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<th width="5%" rowspan="2" align="right" bgcolor="#eeeeee" class="borderWhite" nowrap="nowrap" scope="row">
#foreach ($format in $timeFormat)
#if ($format == "h")
#if ($timer == 0 && $temp2 == 12) #set($timer=12) #end
#if ($timer == 0) #set($timer=12) #end
$timer
#elseif ($format == "a")
#if ($temp2 >= 12) $pmString
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@
<th align="right" bgcolor="#eeeeee" rowspan="2" class="borderWhite" scope="row">
#foreach ($format in $timeFormat)
#if ($format == "h")
#if ($timer == 0 && $temp2 == 12) #set($timer=12) #end
#if ($timer == 0) #set($timer=12) #end
$timer
#elseif ($format == "a")
#if ($temp2 >= 12) $pmString
Expand Down Expand Up @@ -821,7 +821,7 @@
<th align="right" bgcolor="#eeeeee" rowspan="2" class="borderWhite" scope="row">
#foreach ($format in $timeFormat)
#if ($format == "h")
#if ($timer == 0 && $temp2 == 12) #set($timer=12) #end
#if ($timer == 0) #set($timer=12) #end
$timer
#elseif ($format == "a")
#if ($temp2 >= 12) $pmString
Expand Down Expand Up @@ -859,7 +859,7 @@
<th align="right" bgcolor="#eeeeee" rowspan="2" class="borderWhite" scope="row">
#foreach ($format in $timeFormat)
#if ($format == "h")
#if ($timer == 0 && $temp2 == 12) #set($timer=12) #end
#if ($timer == 0) #set($timer=12) #end
$timer
#elseif ($format == "a")
#if ($temp2 >= 12) $pmString
Expand Down

0 comments on commit d6d601f

Please sign in to comment.