From 7b0480a4e03cc1e978cada81b0517243f16d5acf Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 17 Jul 2009 15:11:23 -0600 Subject: [PATCH] MSG_SEP is no longer used. --- imp/lib/IMP.php | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/imp/lib/IMP.php b/imp/lib/IMP.php index 779e4dae6..f8b0d4e3c 100644 --- a/imp/lib/IMP.php +++ b/imp/lib/IMP.php @@ -31,11 +31,8 @@ class IMP const MAILBOX_START_FIRSTPAGE = 3; const MAILBOX_START_LASTPAGE = 4; - /* IMP internal indexing strings. */ - // String used to separate messages. - const MSG_SEP = "\0"; - // String used to separate indexes. - const IDX_SEP = "\1"; + /* IMP internaltring used to separate indexes. */ + const IDX_SEP = "\0"; /* Are we currently in "print" mode? */ static public $printMode = false; @@ -793,10 +790,10 @@ class IMP * @param mixed $indices The following inputs are allowed: *
      * 1. An array of messages indices in the following format:
-     *    msg_id IMP::IDX_SEP msg_folder
+     *    msg_id IMP::IDX_SEP msg_mbox
      *      msg_id      = Message index of the message
-     *      IMP::IDX_SEP = IMP constant used to separate index/folder
-     *      msg_folder  = The full folder name containing the message index
+     *      IMP::IDX_SEP = IMP constant used to separate index/mailbox
+     *      msg_folder  = The full mailbox name containing the message index
      * 2. An array with the full folder name as keys and an array of message
      *    indices as the values.
      * 
-- 2.11.0