CC-3174 : showbuilder

forgot to return value, was getting NOW as the returned time instead.
This commit is contained in:
Naomi Aro 2012-02-27 22:26:17 +01:00
parent 99d3699e71
commit 20a82abb23
2 changed files with 3 additions and 3 deletions

View file

@ -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);
}
/**