mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Possible fix for no participants defined for an event.
This commit is contained in:
parent
6ee87cd2b7
commit
b6984859df
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user