From e2b92830c6079881c0e26ab5e84b05c54783ab5c Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 20 Apr 2009 13:36:28 -0600 Subject: [PATCH] Bug #8104: IMAP dates require full year representation --- framework/Imap_Client/lib/Horde/Imap/Client/Search/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Imap_Client/lib/Horde/Imap/Client/Search/Query.php b/framework/Imap_Client/lib/Horde/Imap/Client/Search/Query.php index e960eb62a..b798da4a7 100644 --- a/framework/Imap_Client/lib/Horde/Imap/Client/Search/Query.php +++ b/framework/Imap_Client/lib/Horde/Imap/Client/Search/Query.php @@ -429,7 +429,7 @@ class Horde_Imap_Client_Search_Query $this->_search['date'] = array(); } $this->_search['date'][$header ? 'header' : 'internal'] = array( - 'date' => $date->format('d-M-y'), + 'date' => $date->format('d-M-Y'), 'range' => $range, 'not' => $not ); -- 2.11.0