CC-4641: Now Playing: Extending show's length won't change the overbooked track's style
-added comment
This commit is contained in:
parent
71be2b2bd1
commit
cc40dfdf4e
|
@ -270,8 +270,13 @@ SQL;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
//update the status flag in cc_schedule.
|
//update the status flag in cc_schedule.
|
||||||
|
|
||||||
|
/* Since we didn't use a propel object when updating
|
||||||
|
* cc_show_instances table we need to clear the instances
|
||||||
|
* so the correct information is retrieved from the db
|
||||||
|
*/
|
||||||
CcShowInstancesPeer::clearInstancePool();
|
CcShowInstancesPeer::clearInstancePool();
|
||||||
|
|
||||||
$instances = CcShowInstancesQuery::create()
|
$instances = CcShowInstancesQuery::create()
|
||||||
->filterByDbEnds($current_timestamp, Criteria::GREATER_THAN)
|
->filterByDbEnds($current_timestamp, Criteria::GREATER_THAN)
|
||||||
->filterByDbShowId($this->_showId)
|
->filterByDbShowId($this->_showId)
|
||||||
|
|
Loading…
Reference in New Issue