CC-3174 : showbuilder
forgot to return value, was getting NOW as the returned time instead.
This commit is contained in:
parent
99d3699e71
commit
20a82abb23
|
@ -98,7 +98,7 @@ class Application_Model_Scheduler {
|
|||
//DateTime::createFromFormat("U.u") will have a problem if there is no decimal in the resulting number.
|
||||
$endEpoch = bcadd($startEpoch , (string) $durationSeconds, 6);
|
||||
|
||||
Logging::log("end DateTime created {$p_startDT->format("Y-m-d H:i:s.u")}");
|
||||
Logging::log("start DateTime created {$p_startDT->format("Y-m-d H:i:s.u")}");
|
||||
Logging::log("start epoch is {$startEpoch}");
|
||||
Logging::log("duration in seconds is {$durationSeconds}");
|
||||
Logging::log("end epoch is {$endEpoch}");
|
||||
|
|
|
@ -90,7 +90,7 @@ class CcSchedule extends BaseCcSchedule {
|
|||
*/
|
||||
public function getDbFadeIn($format = "s.u")
|
||||
{
|
||||
parent::getDbFadein($format);
|
||||
return parent::getDbFadein($format);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -101,7 +101,7 @@ class CcSchedule extends BaseCcSchedule {
|
|||
*/
|
||||
public function getDbFadeOut($format = "s.u")
|
||||
{
|
||||
parent::getDbFadeout($format);
|
||||
return parent::getDbFadeout($format);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue