Oui, je me souviens de ça, en l'installant j'ai eu un problème... Mais comme je faisais plusieurs installations à la fois j'ai pas noté. Malheureusement je n'ai pas vraiment de temps pour t'aider (il faudrait que je réinstalle une RC4b neuve, ce que j'ai pas).
Normalement, il faut juste ignorer le commentaire dans la commande
Trouver. D'ailleurs il ne doit y avoir qu'une seule ligne dans le fichier contenant: "Send::calendar_edit_event("
Quelque chose du style:
<name>Remplacer par</name>
<code><![CDATA[if ($GLOBALS['mods']['calsmulti']) { $event_id = Send::calendar_add_event($this->title, $this->content, $this->which, $this->calendar['timestamp_begin'], $this->calendar['timestamp_end'], $this->calendar['print']); }
else { $event_id = Send::calendar_add_event($this->title, $this->content, $this->calendar['timestamp_begin'], $this->calendar['timestamp_end'], $this->calendar['print']); }
]]></code>
</line>
<line>
<name>Trouver</name>
<code><![CDATA[Send::calendar_edit_event($this->id, $this->title, $this->content, $this->calendar['timestamp_begin'], $this->calendar['timestamp_end'], $this->calendar['print']);
]]></code>
</line>
<line>
<name>Remplacer par</name>
<code><![CDATA[if ($GLOBALS['mods']['calsmulti']) { Send::calendar_edit_event($this->id, $this->title, $this->content, $this->which, $this->calendar['timestamp_begin'], $this->calendar['timestamp_end'], $this->calendar['print']); }
else { Send::calendar_edit_event($this->id, $this->title, $this->content, $this->calendar['timestamp_begin'], $this->calendar['timestamp_end'], $this->calendar['print']);
]]></code>
</line>