CC-2860: When recording a show, UTC time is displayed on the
text field of right progress bar.
This commit is contained in:
parent
1dd78d0584
commit
e60db9e031
@ -1296,6 +1296,7 @@ class Application_Model_Show {
|
||||
." AND si.ends > TIMESTAMP '$timeNow'";
|
||||
|
||||
$rows = $CC_DBC->GetAll($sql);
|
||||
|
||||
return $rows;
|
||||
}
|
||||
|
||||
|
||||
@ -167,7 +167,7 @@ function updatePlaybar(){
|
||||
|
||||
$('#show-length').empty();
|
||||
if (currentShow.length > 0){
|
||||
$('#show-length').text(convertDateToHHMM(currentShow[0].showStartPosixTime) + " - " + convertDateToHHMM(currentShow[0].showEndPosixTime));
|
||||
$('#show-length').text(convertDateToHHMM(currentShow[0].showStartPosixTime + timezoneOffset) + " - " + convertDateToHHMM(currentShow[0].showEndPosixTime + timezoneOffset));
|
||||
}
|
||||
|
||||
/* Column 2 update */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user