On Sat, 25 Mar 2006 10:25:32 +0000, Richard Green <[EMAIL PROTECTED]> wrote:
> Tis a problem in lib/imap.inc:
> 
>                       if ($field=="timestamp"){
>                               $data = @strtotime($value->date);
>                               if ($data != false)
>                                       $data = $timestamp;
>                               }
> 
> Should be
> 
>                       if ($field=="timestamp"){
>                               $timestamp= @strtotime($val->date);
>                               if ($timestamp!= false)
>                                       $data = $timestamp;
>                               }

A problem I found with this new sort ordering that's in CVS is that order by 
date orders by the date of the mail, and not by the incoming date. Is there a 
way to get an incoming order sort, because I get mails from clients with buggy 
clocks disorderd.

-- 
---------------------------------------------------------
Lic. Martín Marqués         |   SELECT 'mmarques' || 
Centro de Telemática        |       '@' || 'unl.edu.ar';
Universidad Nacional        |   DBA, Programador, 
    del Litoral             |   Administrador
---------------------------------------------------------




Reply via email to