improved error message for overlapping shows

This commit is contained in:
denise 2012-07-05 11:33:03 -04:00
parent 4441bf18b7
commit 1cbb0345b3
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ class Application_Form_AddShowWhen extends Zend_Form_SubForm
$overlapping = Application_Model_Schedule::checkOverlappingShows($show_start, $show_end, $update, $instanceId);
if ($overlapping) {
$this->getElement('add_show_duration')->setErrors(array('Cannot have overlapping shows'));
$this->getElement('add_show_duration')->setErrors(array('Cannot schedule overlapping shows'));
$valid = false;
}
}