Cleaned up ShowbuilderController

This commit is contained in:
Rudi Grinberg 2012-09-18 11:02:41 -04:00
parent 96f138a9fe
commit d90559fdf8

View file

@ -248,11 +248,8 @@ class ShowbuilderController extends Zend_Controller_Action
//only send the schedule back if updates have been made.
// -1 default will always call the schedule to be sent back if no timestamp is defined.
if ($showBuilder->hasBeenUpdatedSince($timestamp, $instances)) {
$this->view->update = true;
} else {
$this->view->update = false;
}
$this->view->update = $showBuilder->hasBeenUpdatedSince(
$timestamp, $instances);
}
public function builderFeedAction()