Ignore:
Timestamp:
08/22/12 10:21:10 (12 years ago)
Author:
acoutinho
Message:

Ticket #3064 - Inconsistencia na edicao de tarefas atraves de uma atividade

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/prototype/services/iCal.php

    r7068 r7097  
    135135                } 
    136136 
    137                 ob_start(); 
    138                 print_r( "\n dtStart \n"); 
    139                 print_r($sTime->format(DATE_RFC822)); 
    140                 print_r( "\n dtEnd \n"); 
    141                 print_r( $eTime->format(DATE_RFC822)); 
    142                 $output = ob_get_clean(); 
    143                 file_put_contents( "/tmp/acoutinho.log",  $output , FILE_APPEND); 
    144  
    145137                if(isset($v['due']) && $v['due'] != '' && (int)$v['due'] > 0){ 
    146138                    $dueTime = new DateTime('@' . (int) ($v['due'] / 1000), $timezone); 
     
    189181                    } 
    190182                } 
    191  
    192         ob_start(); 
    193         print_r( "\n Ical Gerado \n"); 
    194         print_r( $ical->createCalendar()); 
    195         $output = ob_get_clean(); 
    196         file_put_contents( "/tmp/acoutinho.log",  $output , FILE_APPEND); 
    197  
    198183                return $ical->createCalendar(); 
    199184    } 
Note: See TracChangeset for help on using the changeset viewer.