Ignore:
Timestamp:
05/17/11 15:26:23 (13 years ago)
Author:
wmerlotto
Message:

Ticket #1887 - Aplicando pequenas correções de tabulação.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.2.0.2/expressoMail1_2/inc/class.imap_functions.inc.php

    r4416 r4429  
    10931093        function get_body_msg($msg_number, $msg_folder) 
    10941094        { 
    1095                         /* 
     1095            /* 
    10961096             * Requires of librarys 
    10971097             */ 
     
    11261126 
    11271127            /* 
    1128              * Monta informações dos anexos para o cabecarios 
     1128             * Monta informações dos anexos para o cabecalhos 
    11291129             */ 
    11301130            $attachments = $attachmentManager->getAttachmentsInfo(); 
     
    11331133 
    11341134            /* 
    1135             * Monta informações das imagens 
    1136             */ 
     1135             * Monta informações das imagens 
     1136             */ 
    11371137            $images = $attachmentManager->getEmbeddedImagesInfo(); 
    11381138            //----------------------------------------------// 
     
    11461146            switch (strtolower($structure->ctype_primary)) 
    11471147            { 
    1148  
    11491148                case 'text': 
    11501149                        if(strtolower($structure->ctype_secondary) == 'x-pkcs7-mime') 
     
    11741173                        } 
    11751174 
    1176                          
    1177                          
    1178  
    11791175                    break; 
     1176 
    11801177               case 'multipart': 
    1181  
    11821178                    $this-> builderMsgBody($structure , $content); 
    11831179 
     
    11851181 
    11861182               case 'message': 
    1187  
    11881183                    if(!is_array($structure->parts)) 
    11891184                    { 
     
    11951190                        $this->builderMsgBody($structure , $content,true); 
    11961191 
    1197                         break; 
    1198  
    1199                 default: 
    1200  
    1201                         if(count($attachments) > 0) 
    1202                             $content .= ''; 
    1203                         else 
    1204                             $content .= $this->functions->getLang('Message does not supported').'. '.$this->functions->getLang('Type').': '.$structure->ctype_primary.'/'.$structure->ctype_secondary; 
    1205                 break; 
     1192                    break; 
     1193 
     1194               default: 
     1195                    if(count($attachments) > 0) 
     1196                       $content .= ''; 
     1197                    else  
     1198                    { 
     1199                       $content .= $this->functions->getLang('Message not supported') . '. '; 
     1200                       $content .= $this->functions->getLang('Type') . ': ' . $structure->ctype_primary . '/' . $structure->ctype_secondary; 
     1201                    } 
     1202                    break; 
    12061203            } 
    12071204 
Note: See TracChangeset for help on using the changeset viewer.