Changeset 3201


Ignore:
Timestamp:
09/01/10 16:38:33 (14 years ago)
Author:
wmerlotto
Message:

Ticket #1182 - Corrigi a interpretação do e-mail do participante do agendamento

Location:
branches/2.2/calendar/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/calendar/inc/class.boicalendar.inc.php

    r3022 r3201  
    22482248 
    22492249                                $parts = explode('@',$var); 
    2250                                 $this->debug("Count of mailto parts : ".count($parts)); 
     2250                                //$this->debug("Count of mailto parts : ".count($parts)); 
    22512251                                if(count($parts) == 2) 
    22522252                                { 
    2253                                         $this->debug("Splitting ".$parts[0]." @ ".$parts[1]); 
     2253                                        //$this->debug("Splitting ".$parts[0]." @ ".$parts[1]); 
    22542254                                        $temp_address = Array(); 
    22552255                                        $temp_address['user'] = $parts[0]; 
     
    27772777                                elseif($state == 'optional' || $state == 'required') 
    27782778                                { 
    2779                                         $this->debug('Mode : '.$mode.' Majortype : '.$majortype . ' Type : '.$type); 
     2779                                        //$this->debug('Mode : '.$mode.' Majortype : '.$majortype . ' Type : '.$type); 
    27802780                                        if($do_to_text) 
    27812781                                        { 
     
    30783078                                                        if ( $email ) 
    30793079                                                        { 
    3080                                                                 // Remove os espaços, tabs e quebra-de-linha no dominio 
    3081                                                                 $email_domain = preg_replace('/\s*/m', '', $ical['event'][$i]['attendee'][$a]['mailto']['host']); 
     3080                                                                // Remove os espaços, tabs e quebra-de-linha no dominio 
     3081                                                                //$email_domain = preg_replace('/\s*/m', '', $ical['event'][$i]['attendee'][$a]['mailto']['host']); 
     3082                                                                $email_domain = $ical['event'][$i]['attendee'][$a]['mailto']['host']; 
    30823083                                                                $email = '<'. $email .'@'. $email_domain .'>'; 
    30833084                                                        } 
  • branches/2.2/calendar/inc/class.uipublicview.inc.php

    r923 r3201  
    983983                                                         $_GET['account_name'] : ''); 
    984984 
    985                         $theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/".$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set']."/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css'; 
     985                        $theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'].'/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css'; 
    986986                 
    987987                        echo '<html>'."\n" 
Note: See TracChangeset for help on using the changeset viewer.