Remove another obsoleted function.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 22 May 2003 16:24:18 +0000 (16:24 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 22 May 2003 16:24:18 +0000 (16:24 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4892 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
src/move_messages.php

index a858666fdaa2af6a6da07bca7914a60f8093b8c5..087618878b6bca35043e4923477f1c01e3ee4c0e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,7 @@ Version 1.5.0 -- CVS
   - Fix max attachment filesize off by factor 10 when ini_var set in bytes (#730742).
   - Fix for parsing fetch results. We are now able to extract the UID if it's
     returned after the header.
+  - Remove obsoleted parsing functions.
 
 **************************************
 *** SquirrelMail Stable Series 1.4 ***
index d9a2fda19c84743767ac6d6ce597d72becc28d59..3095fde7b6df8c3d5f237645ae2b1bf3231049e2 100644 (file)
@@ -27,28 +27,6 @@ if ( !sqgetGlobalVar('composesession', $composesession, SQ_SESSION) ) {
   $composesession = 0;
 }
 
-/* obsolete ?? */
-function putSelectedMessagesIntoString($msg) {
-    $j = 0;
-    $i = 0;
-    $firstLoop = true;
-    // If they have selected nothing msg is size one still, but will
-    // be an infinite loop because we never increment j. so check to
-    // see if msg[0] is set or not to fix this.
-    while (($j < count($msg)) && ($msg[0])) {
-        if ($msg[$i]) {
-            if ($firstLoop != true) {
-                $selectedMessages .= "&amp;";
-            } else {
-                $firstLoop = false;
-            }
-            $selectedMessages .= "selMsg[$j]=$msg[$i]";
-            $j++;
-        }
-        $i++;
-    }
-}
-
 function attachSelectedMessages($msg, $imapConnection) {
     global $username, $attachment_dir, $startMessage,
            $data_dir, $composesession, $uid_support,