Ignore:
Timestamp:
01/29/13 13:32:25 (11 years ago)
Author:
douglas
Message:

Ticket #3324 - Eventos criados no módulo ExpressoCalendar? não criados no Thunderbird

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.5/prototype/services/iCal.php

    r7704 r7799  
    3131    protected function createIcal($data, $params = false ) 
    3232    { 
    33         $ical = new vcalendar(); 
     33        $ical = new icalCreatorVcalendar(); 
    3434                $ical->setProperty('method', isset($params['method']) ? $params['method'] : 'PUBLISH' ); 
    3535 
     
    264264    protected function createCompatibleIcal($data, $params = false ) 
    265265    { 
    266         $ical = new vcalendar(); 
     266        $ical = new icalCreatorVcalendar(); 
    267267                $ical->setProperty('method', isset($params['method']) ? $params['method'] : 'PUBLISH' ); 
    268268 
     
    534534    public function parse($data, $params = false) { 
    535535        Config::regSet('noAlarm', TRUE); //Evita o envio de notificação 
    536         $vcalendar = new vcalendar( ); 
     536        $vcalendar = new icalCreatorVcalendar( ); 
     537 
    537538        $vcalendar->parse(trim($data)); 
    538539        $vcalendar->sort(); 
     
    11941195 
    11951196    public function analize($data, $params = false) { 
    1196         $vcalendar = new vcalendar( ); 
     1197        $vcalendar = new icalCreatorVcalendar( ); 
    11971198        $vcalendar->parse(trim($data)); 
    11981199        $vcalendar->sort(); 
Note: See TracChangeset for help on using the changeset viewer.