added speed improvements
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 14 Apr 2000 01:15:58 +0000 (01:15 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 14 Apr 2000 01:15:58 +0000 (01:15 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@422 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/right_main.php

index 07ee9f707b444955e5647a14df974ab018c7d0a5..94fba8c8d8071e7f96d588a85fd9b9e74c434d94 100644 (file)
@@ -7,6 +7,7 @@
     **
     **/
 
+
    session_start();
 
    if(!isset($logged_in)) {
    //    when a link on the left hand frame is used.  Also check to make sure we actually have the
    //    array in the registered session data.  :)
    if ($use_mailbox_cache && session_is_registered("msgs")) {
-      displayMessageArray($imapConnection, $numMessages, $startMessage, $msgs, $mailbox, $sort, $color,$show_num);
+      showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
    } else {
       if (session_is_registered("msgs"))
          unset($msgs);
+      if (session_is_registered("msort"))
+         unset($msort);
 
-      // i have found that only global variables can be registered successfully with a session.  therefore
-      //    i am passing in a simple empty variable (msgs) which will be returned with an array and can be
-      //    then registered here as a global variable.  whew.
-      showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $msgs);
+      showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
       
       if (session_is_registered("msgs") && isset($msgs))
          session_register("msgs");
+      if (session_is_registered("msort") && isset($msort))
+         session_register("msort");
    }
 
    // close the connection