Changeset 6336


Ignore:
Timestamp:
05/29/12 10:54:37 (12 years ago)
Author:
marcieli
Message:

Ticket #2764 - Inserida consistencia para não exibir mensagens repetidas nos alertas.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.4.1-1/expressoMail1_2/inc/class.imap_functions.inc.php

    r6324 r6336  
    53015301                                        $headers = imap_fetch_overview($this->mbox, $m, FT_UID); 
    53025302                                        $date = explode(" ", $headers[0]->date);  
    5303                                         $result[] = array ( 
     5303                                        $result[$m."_".$folder] = array ( 
    53045304                                                'udate'      => $headers[0]->udate, 
    53055305                                                'smalldate'  => $date[4], 
     
    53115311                                } 
    53125312                } 
    5313                 return $result; 
    5314         } 
     5313                $result_final = array(); 
     5314                foreach ($result as $r){ 
     5315                        $result_final[] = $r; 
     5316                } 
     5317 
     5318                return $result_final; 
     5319        } 
     5320         
    53155321        function open_flagged_msg($params){ 
    53165322                $message_number = $params['msg_number']; 
Note: See TracChangeset for help on using the changeset viewer.