From: Michael M Slusarz Date: Fri, 17 Jul 2009 21:11:23 +0000 (-0600) Subject: MSG_SEP is no longer used. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7b0480a4e03cc1e978cada81b0517243f16d5acf;p=horde.git MSG_SEP is no longer used. --- 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.
      *