Calendar: Fix form to edit personal event with invitations - refs BT#20637

pull/4668/head
Angel Fernando Quiroz Campos 3 years ago
parent 4682d74927
commit ddfe225166
  1. 2
      main/inc/lib/agenda.lib.php

@ -2844,7 +2844,7 @@ class Agenda
$id = isset($params['id']) ? (int) $params['id'] : 0;
$em = Database::getManager();
$personalEvent = $id ? $em->find('ChamiloCoreBundle:PersonalAgenda', $id) : null;
$personalEvent = 'personal' === $this->type && $id ? $em->find('ChamiloCoreBundle:PersonalAgenda', $id) : null;
$url = api_get_self().'?action='.$action.'&id='.$id.'&type='.$this->type;
if ($this->type == 'course') {

Loading…
Cancel
Save