Merge branch '2.5.x' of https://github.com/sourcefabric/Airtime into 2.5.x

This commit is contained in:
root 2014-01-30 17:07:52 +00:00
commit 91c89e91f3
1 changed files with 2 additions and 2 deletions

View File

@ -155,9 +155,9 @@ class Application_Service_ShowService
private function storeOrigLocalShowInfo()
{
if ($this->ccShow->isRepeating()) {
$this->origCcShowDay = $this->ccShow->getFirstRepeatingCcShowDay();
$this->origCcShowDay = clone $this->ccShow->getFirstRepeatingCcShowDay();
} else {
$this->origCcShowDay = $this->ccShow->getFirstCcShowDay();
$this->origCcShowDay = clone $this->ccShow->getFirstCcShowDay();
}
$this->oldShowTimezone = $this->origCcShowDay->getDbTimezone();