Confirmed, this fixes the problem I was having.
Thanks!

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;
>                               }




Reply via email to