diff --git a/calendar/inc/class.bocalendar.inc.php b/calendar/inc/class.bocalendar.inc.php index 27be80fbc5..dbe0f60c9c 100755 --- a/calendar/inc/class.bocalendar.inc.php +++ b/calendar/inc/class.bocalendar.inc.php @@ -316,7 +316,7 @@ } $ui = CreateObject('calendar.uicalendar'); - + if(isset($HTTP_GET_VARS['readsess'])) { $event = $this->restore_from_appsession(); @@ -566,7 +566,11 @@ { $error = 0; // do a little form verifying - if ($event['title'] == '') + if (!$event['participants']) + { + $error = 43; + } + elseif ($event['title'] == '') { $error = 40; }