Bonjour, j’ai corrigé un bug dans le calendrier :
lorsque l’on fait une invitation de groupe, il y a un décalage dans les lignes de réponse.
J’ai remplacer dans class.calendar_uiforms.inc.php les lignes 1070 à 1081 :
$content[‘participants’][$row++][‘title’] =
$GLOBALS[‘egw’]->common->grab_owner_name($member);
// read access is enought to invite participants
// but you edit rights to change status
if (!$this->bo->check_perms(EGW_ACL_EDIT,0,$member))
{
$readonlys[$row.’[quantity]’] = $readonlys[“delete[$member]”] =$readonlys[$row][‘status’]= true;
}
else
{
$readonlys[$row.’[quantity]’] = $readonlys[“delete[$member]”] = true;
}
par :
// read access is enought to invite participants
// but you edit rights to change status
if (!$this->bo->check_perms(EGW_ACL_EDIT,0,$member))
{
$readonlys[$row.’[quantity]’] = $readonlys[“delete[$member]”] =$readonlys[$row][‘status’]= true;
}
else
{
$readonlys[$row.’[quantity]’] = $readonlys[“delete[$member]”] = true;
}
$content[‘participants’][$row++][‘title’] =
$GLOBALS[‘egw’]->common->grab_owner_name($member);
Cordialement,
Nathalie AVRIL