changed unclosed comment tags /* on lines 315 & 316 to //
[squirrelmail.git] / src / right_main.php
index eaec8346a8e33286fc0da189fdf0525897dd0930..be8f683e997d5f0a4378e1068919002390e7e232 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
    /**
     **  right_main.php
     **
@@ -7,6 +7,9 @@
     **
     **/
 
+
+   session_start();
+
    if(!isset($logged_in)) {
       echo _("You must login first.");
       exit;
@@ -35,9 +38,7 @@
    if (!isset($display_messages_php))
       include("../functions/display_messages.php");
 ?>
-<HTML>
-<FONT FACE="Arial,Helvetica">
-<?
+<?php
    /////////////////////////////////////////////////////////////////////////////////
    //
    // incoming variables from URL:
@@ -58,7 +59,6 @@
 
    /** If it was a successful login, lets load their preferences **/
    include("../src/load_prefs.php");
-   echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
 
    // If the page has been loaded without a specific mailbox,
    //    just show a page of general info.
    }
 
    sqimap_mailbox_select($imapConnection, $mailbox);
-   $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
    displayPageHeader($color, $mailbox);
 
-   showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color);
+       if (isset($newsort)) {
+               $sort = $newsort;
+               session_register("sort");
+       }       
+
+   // Check to see if we can use cache or not.  Currently the only time when you wont use it is
+   //    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")) {
+      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);
+               if (session_is_registered("numMessages"))
+                       unset($numMessages);
+
+       $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
+
+      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");
+      session_register("numMessages");
+   }
 
    // close the connection
    sqimap_logout ($imapConnection);