CC-5077: Calendar -> Context menu -> Show Content -> shows incorrect time filled on edited repeat instances

- We weren't updating the time_filled column in cc_show_instances when creating the new show
This commit is contained in:
denise 2013-04-30 15:54:04 -04:00
parent 4ca60ca676
commit ec2f36efa8
2 changed files with 12 additions and 15 deletions

View file

@ -91,6 +91,9 @@ class Application_Service_ShowService
$ccSchedule->save();
}
$con = Propel::getConnection(CcShowInstancesPeer::DATABASE_NAME);
$ccShowInstance->updateDbTimeFilled($con);
//delete the edited instance from the repeating sequence
$ccShowInstanceOrig->setDbModifiedInstance(true)->save();