Confirmed, this fixes the problem I was having. Thanks!
On Sat, 25 Mar 2006 10:25:32 +0000, Richard Green richard@burninghorizons.net 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; }