small layout enhancements
[squirrelmail.git] / src / search.php
index 04be998ab59beeb98ab334b68b970bde4f403e05..400ba81f9e6ead45a8efdb228203657c8c24f1db 100644 (file)
 require_once('../src/validate.php');
 require_once('../functions/imap.php');
 require_once('../functions/imap_search.php');
+require_once('../functions/imap_utf7_decode_local.php');
 require_once('../functions/array.php');
 require_once('../functions/strings.php');
 
+global $allow_thread_sort;
 
-//     here are some functions, could go in imap_search.php
-//     this was here, pretty handy
+/*  here are some functions, could go in imap_search.php
 
+    this was here, pretty handy  */
 function s_opt( $val, $sel, $tit ) {
     echo "            <option value=\"$val\"";
     if ( $sel == $val ) {
@@ -27,327 +29,456 @@ function s_opt( $val, $sel, $tit ) {
     echo  ">$tit</option>\n";
 }
 
-//     function to get the recent searches and put them in arrays
-
-function get_recent($pref_name, $username, $data_dir) {
-    $array = array ();
+/*  function to get the recent searches and put them in the attributes array  */
+function get_recent($username, $data_dir) {
+    $attributes = array();
+    $types = array('search_what', 'search_where', 'search_folder');
     $recent_count = getPref($data_dir, $username, 'search_memory', 0);
-    $n = 0;
     for ($x=1;$x<=$recent_count;$x++) {
-       $array[$n] = getPref($data_dir, $username, "$pref_name" . "$x", "");
-       $n++;
+        reset($types);
+        foreach ($types as $key) {
+            $attributes[$key][$x] = getPref($data_dir, $username, $key.$x, "");
+        }
     }
-    return $array;
+    return $attributes;
 }
 
-//     function to get the saved searches and put them in arrays
-
-function get_saved($pref_name, $username, $data_dir) {
-    $array = array ();
-    $n = 0;
-    for ($x=1;;$x++) {
-        $array[$n] = getPref($data_dir, $username, "$pref_name" . "$x", "");
-       if ($array[$n] == "") {
-           array_pop($array);
-           return $array;
-       }
-       $n++;
+/*  function to get the saved searches and put them in the saved_attributes array  */
+function get_saved($username, $data_dir) {
+    $saved_attributes = array();
+    $types = array('saved_what', 'saved_where', 'saved_folder');
+    foreach ($types as $key) {
+        for ($x=1;;$x++) {
+            $saved_attributes[$key][$x] = getPref($data_dir, $username, $key."$x", "");
+            if ($saved_attributes[$key][$x] == "") {
+                array_pop($saved_attributes[$key]);
+               break;
+            }
+        }
     }
-    return $array;
+    return $saved_attributes;
 }
 
-//     function to update pref file with recent searches
-
-function update_recent($array, $recent_value, $pref_name, $username, $data_dir) {
-    $array = get_recent($pref_name, $username, $data_dir);
-    array_push ($array, $recent_value);
-    array_shift ($array);
-    $recent_count = getPref($data_dir, $username, 'search_memory', 0);
-    $n=0;
-    for ($i=1;$i<=$recent_count;$i++) {
-       setPref($data_dir, $username, "$pref_name" . "$i", $array[$n]);
-       $n++;
+/*  function to update recent pref arrays  */
+function update_recent($what, $where, $mailbox, $username, $data_dir) {
+    $attributes = array();
+    $types = array('search_what', 'search_where', 'search_folder');
+    $input = array($what, $where, $mailbox);
+    $attributes = get_recent( $username, $data_dir);
+    reset($types);
+    $dupe = 'no';
+    for ($i=1;$i<=count($attributes['search_what']);$i++) {
+        if (isset($attributes['search_what'][$i])) {
+            if ($what == $attributes['search_what'][$i] &&
+                $where == $attributes['search_where'][$i] &&
+                $mailbox == $attributes['search_folder'][$i]) {
+                    $dupe = 'yes';
+            }
+        }
+    }
+    if ($dupe == 'no') {
+        $i = 0;
+        foreach ($types as $key) {
+            array_push ($attributes[$key], $input[$i]);
+            array_shift ($attributes[$key]);
+            $i++;
+        }
+        $recent_count = getPref($data_dir, $username, 'search_memory', 0);
+        $n=0;
+        for ($i=1;$i<=$recent_count;$i++) {
+            reset($types);
+            foreach ($types as $key) {
+                setPref($data_dir, $username, $key.$i, $attributes[$key][$n]);
+            }
+            $n++;
+        }
     }
 }
 
-//     function to "forget" a recent search
-
+/*  function to forget a recent search  */
 function forget_recent($forget_index, $username, $data_dir) {
-    $what_array = get_recent("search_what", $username, $data_dir);
-    $where_array = get_recent("search_where", $username, $data_dir);
-    $folder_array = get_recent("search_folder", $username, $data_dir);
-    array_splice($what_array, $forget_index, 1);
-    array_splice($where_array, $forget_index, 1);
-    array_splice($folder_array, $forget_index, 1);
+    $attributes = array();
+    $types = array('search_what', 'search_where', 'search_folder');
+    $attributes = get_recent( $username, $data_dir);
+    reset($types);
+    foreach ($types as $key) {
+        array_splice($attributes[$key], $forget_index, 1);
+        array_unshift($attributes[$key], '');
+    }
+    reset($types);
     $recent_count = getPref($data_dir, $username, 'search_memory', 0);
     $n=0;
     for ($i=1;$i<=$recent_count;$i++) {
-        setPref($data_dir, $username, "search_what" . "$i", $what_array[$n]);
-       setPref($data_dir, $username, "search_where" . "$i", $where_array[$n]);
-       setPref($data_dir, $username, "search_folder" . "$i", $folder_array[$n]);
-       $n++;
+        reset($types);
+        foreach ($types as $key) {
+            setPref($data_dir, $username, $key.$i, $attributes[$key][$n]);
+        }
+        $n++;
     }
-
-//             function to delete a saved search
 }
+
+/*  function to delete a saved search  */
 function delete_saved($delete_index, $username, $data_dir) {
-    $saved_what_array = get_saved("saved_what", $username, $data_dir); 
-    $saved_where_array = get_saved("saved_where", $username, $data_dir);
-    $saved_folder_array = get_saved("saved_folder", $username, $data_dir);
-    array_splice($saved_what_array, $delete_index, 1);
-    array_splice($saved_where_array, $delete_index, 1);
-    array_splice($saved_folder_array, $delete_index, 1);
+    $types = array('saved_what', 'saved_where', 'saved_folder');
+    $attributes = get_saved($username, $data_dir);
+    foreach ($types as $key) {
+        array_splice($attributes[$key], $delete_index, 1);
+    }
+    reset($types);
     $n=0;
-    $saved_count = count($saved_what_array);
+    $saved_count = count($attributes['saved_what']);
     $last_element = $saved_count + 1;
-    if ($last_element < 1) {
         for ($i=1;$i<=$saved_count;$i++) {
-            setPref($data_dir, $username, "saved_what" . "$i", $saved_what_array[$n]);
-           setPref($data_dir, $username, "saved_where" . "$i", $saved_where_array[$n]);
-           setPref($data_dir, $username, "saved_folder" . "$i", $saved_folder_array[$n]);
-           $n++;
+            reset($types);
+            foreach ($types as $key) {
+                setPref($data_dir, $username, $key.$i, $attributes[$key][$n]);
+            }
+        $n++;
         }
+    reset($types);
+    foreach($types as $key) {
+    removePref($data_dir, $username, $key.$last_element);
     }
-    removePref($data_dir, $username, "saved_what" . "$last_element");
-    removePref($data_dir, $username, "saved_where" . "$last_element");
-    removePref($data_dir, $username, "saved_folder" . "$last_element");
-}    
-
-//             function to save a search from recent to saved
+}
 
+/*  function to save a search from recent to saved  */
 function save_recent($save_index, $username, $data_dir) {
-    $what_array = get_recent("search_what", $username, $data_dir);
-    $where_array = get_recent("search_where", $username, $data_dir);
-    $folder_array = get_recent("search_folder", $username, $data_dir);
-    $saved_what_once = array_slice($what_array, $save_index, 1);
-    $saved_where_once = array_slice($where_array, $save_index, 1);
-    $saved_folder_once = array_slice($folder_array, $save_index, 1);
-    $saved_array = get_saved("saved_what", $username, $data_dir);
-    $saved_count = (count($saved_array) + 1);
-    setPref($data_dir, $username, "saved_what" . "$saved_count", $saved_what_once[0]);
-    setPref($data_dir, $username, "saved_where" . "$saved_count", $saved_where_once[0]);
-    setPref($data_dir, $username, "saved_folder" . "$saved_count", $saved_folder_once[0]);
+    $attributes = array();
+    $types = array('search_what', 'search_where', 'search_folder');
+    $saved_types = array(0 => 'saved_what', 1 => 'saved_where', 2 => 'saved_folder');
+    $saved_array = get_saved($username, $data_dir);
+    $save_index = $save_index -1;
+    $saved_count = (count($saved_array['saved_what']) + 1);
+    $attributes = get_recent ($username, $data_dir);
+    $n = 0;
+    foreach ($types as $key) {
+        $slice = array_slice($attributes[$key], $save_index, 1);
+        $name = $saved_types[$n];
+        setPref($data_dir, $username, $name.$saved_count, $slice[0]);
+        $n++;
+    }
 }
 
+function printSearchMessages($msgs,$mailbox, $cnt, $imapConnection, $usecache = false, $newsort = false) {
+    global $sort, $color;
+    
+    $msort = calc_msort($msgs, $sort, $cnt, true);
 
+    if ($cnt > 0) {
+       if ( $mailbox == 'INBOX' ) {
+           $showbox = _("INBOX");
+       } else {
+            $showbox = imap_utf7_decode_local($mailbox);
+       }
+       echo html_tag( 'div', '<b><big>' . _("Folder:") . ' '. $showbox.'</big></b>','center') . "\n";
 
-/* ------------------------ main ------------------------ */
+       displayMessageArray($imapConnection, $cnt, 1, 
+                            $msgs, $msort, $mailbox, $sort, $color, 
+                            $cnt, true);
+       
+    }
+}                            
 
-//     reset these arrays on each page load just in case
+/* ------------------------ main ------------------------ */
 
-$what_array = array ();
-$where_array = array ();
-$folder_array = array ();
-$saved_what_array = array ();
-$saved_where_array = array ();
-$saved_folder_array = array ();
-$search_all = "none";
+/*  reset these arrays on each page load just in case  */
+$attributes = array ();
+$saved_attributes = array ();
+$search_all = 'none';
+$perbox_count = array ();
+$recent_count = getPref($data_dir, $username, 'search_memory', 0);
 
-//     get mailbox names
 
+/*  get mailbox names  */
 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
 $boxes = sqimap_mailbox_list($imapConnection);
 
-
-//     set current mailbox to INBOX if none was selected or if page
-//     was called to search all folders.
-
-if ($mailbox == 'None' || $mailbox == "" ) {
+/*  set current mailbox to INBOX if none was selected or if page
+    was called to search all folders.  */
+if ( !isset($mailbox) || $mailbox == 'None' || $mailbox == '' ) {
     $mailbox = $boxes[0]['unformatted'];
 }
-if ($mailbox == "All Folders") {
-    $search_all = "all";
+if ($mailbox == 'All Folders') {
+    $search_all = 'all';
 }
 
-//     page headers
-
-displayPageHeader($color, $mailbox);
-
-//     if the page is called from a search link or button  update recent values
-//     in pref files here
-
-if ($submit == "Search" && !empty($what)) {
-    update_recent($what_array, $what, "search_what", $username, $data_dir);
-    update_recent($where_array, $where, "search_where", $username, $data_dir);
-    update_recent($folder_array, $mailbox, "search_folder", $username, $data_dir);
+if (isset($composenew) && $composenew) {
+    $comp_uri = "../src/compose.php?mailbox=". urlencode($mailbox).
+               "&amp;session=$composesession&amp;attachedmessages=true&amp";
+    displayPageHeader($color, $mailbox, "comp_in_new(false,'$comp_uri');", false);
+} else {
+    displayPageHeader($color, $mailbox);
+}
+/*  See how the page was called and fire off correct function  */
+if ((!isset($submit) || empty($submit)) && !empty($what)) {
+    $submit = _("Search");
 }
-//     if the page is called from a "forget recent" link remove search from pref file
-elseif ($submit == "forget") {
+if ( !isset( $submit ) ) {
+    $submit = '';
+} else if ($submit == _("Search") && !empty($what)) {
+    if ($recent_count > 0) {
+        update_recent($what, $where, $mailbox, $username, $data_dir);
+    }
+}
+elseif ($submit == 'forget') {
     forget_recent($count, $username, $data_dir);
 }
-//     if the page is called from a "save recent" link add search to saved searches
-elseif ($submit == "save") {
+elseif ($submit == 'save') {
     save_recent($count, $username, $data_dir);
 }
-elseif ($submit == "delete") {
+elseif ($submit == 'delete') {
     delete_saved($count, $username, $data_dir);
 }
-//     if the page is called from a "delete saved" link delete saved search
-do_hook('search_before_form');
 
-echo "<BR>\n".
-     "      <table width=\"100%\" align=center cellpadding=2 cellspacing=0 border=0>\n".
-     "      <TR><td bgcolor=\"$color[0]\">\n".
-     "          <CENTER><B>"._("Search")."</B></CENTER>\n".
-     "      </TD></TR>\n".
-     '      <TR><td align=center>';
+do_hook('search_before_form');
 
-//     update the recent and saved searches from the pref files
+echo "<br>\n".
+     html_tag( 'table',
+         html_tag( 'tr', "\n" .
+             html_tag( 'td', '<b>' . _("Search") . '</b>', 'center', $color[0] )
+         ) ,
+     '', '', 'width="100%"') . "\n";
 
-$what_array = get_recent("search_what", $username, $data_dir);
-$where_array = get_recent("search_where", $username, $data_dir);
-$folder_array = get_recent("search_folder", $username, $data_dir);
-$recent_count = getPref($data_dir, $username, 'search_memory', 0);
-$saved_what_array = get_saved("saved_what", $username, $data_dir); 
-$saved_where_array = get_saved("saved_where", $username, $data_dir);
-$saved_folder_array = get_saved("saved_folder", $username, $data_dir);
-$saved_count = count($saved_what_array);
+/*  update the recent and saved searches from the pref files  */
+$attributes = get_recent($username, $data_dir);
+$saved_attributes = get_saved($username, $data_dir);
+$saved_count = count($saved_attributes['saved_what']);
+$count_all = 0;
 
-//     saved search table
+/* Saved Search Table */
 if ($saved_count > 0) {
-    echo "<BR><B>Saved Searches</B>\n".
-         "<TABLE WIDTH=\"95%\" CELLPADDING=0 CELLSPACING=0 BGCOLOR=\"$color[0]\">\n";
-    for ($i=0;$i<$saved_count;$i++) {
-        echo "<TR><TD WIDTH=35%>$saved_folder_array[$i]</TD>\n".
-             "<TD ALIGN=LEFT>$saved_what_array[$i]</TD>\n".
-             "<TD ALIGN=RIGHT>$saved_where_array[$i]&nbsp;&nbsp;&nbsp;\n".
-            "<A HREF=search.php?".
-            "mailbox=", urlencode($saved_folder_array[$i]), "&".
-            "what=", urlencode($saved_what_array[$i]), "&".
-            "where=", urlencode($saved_where_array[$i]), ">".
-            "edit</A>\n".
-            "&nbsp;|&nbsp;<A HREF=search.php?".
-            "mailbox=", urlencode($saved_folder_array[$i]), "&".
-            "what=", urlencode($saved_what_array[$i]), "&".
-            "where=", urlencode($saved_where_array[$i]), "&".
-            "submit=Search_no_update>search</A>\n".
-            "&nbsp;|&nbsp;<A HREF=search.php?count=$i&submit=delete>delete</A>".
-            "&nbsp;&nbsp;";
+    echo "<br>\n"
+    . html_tag( 'table', '', 'center', $color[9], 'width="95%" cellpadding="1" cellspacing="1" border="0"' )
+    . html_tag( 'tr',
+          html_tag( 'td', '<b>Saved Searches</b>', 'center' )
+      )
+    . html_tag( 'tr' )
+    . html_tag( 'td' )
+    . html_tag( 'table', '', 'center', '', 'width="100%" cellpadding="2" cellspacing="2" border="0"' );
+    for ($i=0; $i < $saved_count; ++$i) {
+        if ($i % 2) {
+            echo html_tag( 'tr', '', '', $color[0] );
+        } else {
+            echo html_tag( 'tr', '', '', $color[4] );
+        }
+        echo html_tag( 'td', $saved_attributes['saved_folder'][$i], 'left', '', 'width="35%"' )
+        . html_tag( 'td', $saved_attributes['saved_what'][$i], 'left' )
+        . html_tag( 'td', $saved_attributes['saved_where'][$i], 'center' )
+        . html_tag( 'td', '', 'right' )
+        .   '<a href=search.php'
+        .     '?mailbox=' . urlencode($saved_attributes['saved_folder'][$i])
+        .     '&amp;what=' . urlencode($saved_attributes['saved_what'][$i])
+        .     '&amp;where=' . urlencode($saved_attributes['saved_where'][$i])
+        .   '>' . _("edit") . '</a>'
+        .   '&nbsp;|&nbsp;'
+        .   '<a href=search.php'
+        .     '?mailbox=' . urlencode($saved_attributes['saved_folder'][$i])
+        .     '&amp;what=' . urlencode($saved_attributes['saved_what'][$i])
+        .     '&amp;where=' . urlencode($saved_attributes['saved_where'][$i])
+        .     '&amp;submit=Search_no_update'
+        .   '>' . _("search") . '</a>'
+        .   '&nbsp;|&nbsp;'
+        .   "<a href=search.php?count=$i&amp;submit=delete>"
+        .     _("delete")
+        .   '</a>'
+        . '</td></tr>';
     }
-echo "</TABLE>\n";
+    echo "</table></td></tr></table>\n";
 }
 
-//     recent search table
-
 if ($recent_count > 0) {
-    echo "<BR><B>Recent Searches</B>\n".
-         "<TABLE WIDTH=\"95%\" CELLPADDING=0 CELLSPACING=0 BGCOLOR=\"$color[0]\">\n";
-    for ($i=0;$i<$recent_count;$i++) {
-        if (!empty($what_array[$i])) {
-           if ($folder_array[$i] == "") {
-               $folder_array[$i] = "INBOX";
-           }
-            echo "<TR><TD WIDTH=35%>$folder_array[$i]</TD>\n".
-                "<TD ALIGN=LEFT>$what_array[$i]</TD>\n".
-                "<TD ALIGN=RIGHT>$where_array[$i]&nbsp;&nbsp;&nbsp;".
-                 "<A HREF=search.php?".
-                "count=$i&submit=save".
-                ">save</A>\n".
-                 "&nbsp;|&nbsp;<A HREF=search.php?".
-                "mailbox=", urlencode($folder_array[$i]), "&".
-                "what=", urlencode($what_array[$i]), "&".
-                "where=", urlencode($where_array[$i]), "&".
-                "submit=Search_no_update>search</A>\n".
-                "&nbsp;|&nbsp;<A HREF=search.php?count=$i&submit=forget>forget</A>".
-                "&nbsp;&nbsp;</TD></TR>\n";
+    echo "<br>\n"
+       . html_tag( 'table', '', 'center', $color[9], 'width="95%" cellpadding="1" cellspacing="1" border="0"' )
+       . html_tag( 'tr',
+             html_tag( 'td', '<b>' . _("Recent Searches") . '</b>', 'center' )
+         )
+       . html_tag( 'tr' )
+       . html_tag( 'td' )
+       . html_tag( 'table', '', 'center', '', 'width="100%" cellpadding="0" cellspacing="0" border="0"' );
+    for ($i=1; $i <= $recent_count; ++$i) {
+            if (isset($attributes['search_folder'][$i])) { 
+            if ($attributes['search_folder'][$i] == "") {
+                $attributes['search_folder'][$i] = "INBOX";
+            }
+            }
+            if ($i % 2) {
+                echo html_tag( 'tr', '', '', $color[0] );
+            } else {
+                echo html_tag( 'tr', '', '', $color[0] );
+            }
+            if (isset($attributes['search_what'][$i]) &&
+                !empty($attributes['search_what'][$i])) {
+            echo html_tag( 'td', $attributes['search_folder'][$i], 'left', '', 'width="35%"' )
+               . html_tag( 'td', $attributes['search_what'][$i], 'left' )
+               . html_tag( 'td', $attributes['search_where'][$i], 'center' )
+               . html_tag( 'td', '', 'right' )
+               .   "<a href=search.php?count=$i&amp;submit=save>"
+               .     _("save")
+               .   '</a>'
+               .   '&nbsp;|&nbsp;'
+               .   '<a href=search.php'
+               .     '?mailbox=' . urlencode($attributes['search_folder'][$i])
+               .     '&amp;what=' . urlencode($attributes['search_what'][$i])
+               .     '&amp;where=' . urlencode($attributes['search_where'][$i])
+               .     '&amp;submit=Search_no_update'
+               .   '>' . _("search") . '</a>'
+               .   '&nbsp;|&nbsp;'
+               .   "<a href=search.php?count=$i&amp;submit=forget>"
+               .     _("forget")
+               .   '</a>'
+               . '</td></tr>';
         }
-    }
-    echo "</TABLE>\n".
-         "<BR>\n";
+        }
+    echo '</table></td></tr></table><br>';
 }
-//     search form
-echo "<B>Current Search</B>";
-echo "   <TABLE WIDTH=\"95%\" CELLPADDING=0 CELLSPACING=0>\n";
-echo "<FORM ACTION=\"search.php\" NAME=s>\n".
-     "     <TR >\n".
-     '       <TD><SELECT NAME="mailbox">';
+
+
+if (isset($newsort)) {
+    $sort = $newsort;
+    session_register('sort');
+}
+
+/*********************************************************************
+ * Check to see if we can use cache or not. Currently the only time  *
+ * when you will not 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 (! isset($use_mailbox_cache)) {
+    $use_mailbox_cache = 0;
+}
+
+/* There is a problem with registered vars in 4.1 */
+/*
+if( substr( phpversion(), 0, 3 ) == '4.1'  ) {
+    $use_mailbox_cache = FALSE;
+}
+*/
+
+/* Search Form */
+echo html_tag( 'div', '<b>' . _("Current Search") . '</b>', 'left' ) . "\n"
+   . '<form action="search.php" name="s">'
+   . html_tag( 'table', '', '', '', 'width="95%" cellpadding="0" cellspacing="0" border="0"' )
+   . html_tag( 'tr' )
+   . html_tag( 'td', '', 'left' )
+   . '<select name="mailbox">';
 for ($i = 0; $i < count($boxes); $i++) {
     if (!in_array('noselect', $boxes[$i]['flags'])) {
         $box = $boxes[$i]['unformatted'];
-        $box2 = str_replace(' ', '&nbsp;', $boxes[$i]['unformatted-disp']);
-        if ($mailbox == $box) {
-            echo "         <OPTION VALUE=\"$box\" SELECTED>$box2</OPTION>\n";
+        $box2 = str_replace(' ', '&nbsp;', 
+                         imap_utf7_decode_local($boxes[$i]['unformatted-disp']));
+        if( $box2 == 'INBOX' ) {
+            $box2 = _("INBOX");
         }
-        else {
-            echo "         <OPTION VALUE=\"$box\">$box2</OPTION>\n";
-        }  
+        echo '         <option value="' . $box . '"';
+        if ($mailbox == $box) { echo ' selected'; }
+        echo '>' . $box2 . '</option>' . "\n";
     }
 }
-        echo "<OPTION VALUE=\"All Folders\"";
-        if ($mailbox == "All Folders") {
-            echo "SELECTED";
+        echo '<option value="All Folders"';
+        if ($mailbox == 'All Folders') {
+            echo ' selected';
         }
-        echo ">All folders</OPTION>\n";
-echo '         </SELECT>'.
-     "       </TD>\n".
-     "        <TD ALIGN=\"CENTER\">\n";
+        echo ">All folders</option>\n";
+echo '         </select>'.
+     "       </td>\n";
+if ( !isset( $what ) ) {
+    $what = '';
+}
+if ( !isset( $where ) ) {
+    $where = '';
+}
+
+
 $what_disp = str_replace(',', ' ', $what);
 $what_disp = str_replace('\\\\', '\\', $what_disp);
 $what_disp = str_replace('\\"', '"', $what_disp);
 $what_disp = str_replace('"', '&quot;', $what_disp);
-echo "          <INPUT TYPE=\"TEXT\" SIZE=\"35\" NAME=\"what\" VALUE=\"$what_disp\">\n".
-     "        </TD>\n".
-     "<TD ALIGN=\"RIGHT\">\n".
-     "<SELECT NAME=\"where\">";
+echo html_tag( 'td', '<input type="text" size="35" name="what" value="' . $what_disp . '">' . "\n", 'center' )
+     . html_tag( 'td', '', 'right' )
+     . "<select name=\"where\">";
 s_opt( 'BODY', $where, _("Body") );
 s_opt( 'TEXT', $where, _("Everywhere") );
 s_opt( 'SUBJECT', $where, _("Subject") );
 s_opt( 'FROM', $where, _("From") );
 s_opt( 'CC', $where, _("Cc") );
 s_opt( 'TO', $where, _("To") );
-echo "         </SELECT>\n" .
-     "        </TD>\n".
-     "       <TD COLSPAN=\"3\" ALIGN=\"CENTER\">\n".
-     "         <INPUT TYPE=\"submit\" NAME=\"submit\" VALUE=\"Search\">\n".
-     "       </TD>\n".
-     "     </TR>\n".
-     "</FORM>\n".
-     "   </TABLE>\n".
-     "</TD></TR></TABLE>\n";
-
-
-do_hook("search_after_form");
-
-//     search all folders option still in the works. returns a table for each 
-//     folder it finds a match in. The toggle all link does not work
-
+echo "         </select>\n" .
+     "        </td>\n".
+     html_tag( 'td', '<input type="submit" name="submit" value="' . _("Search") . '">' . "\n", 'center', '', 'colspan="3"' ) .
+     "     </tr>\n".
+     "</form>\n".
+     "   </table>\n".
+     "</td></tr></table>\n";
+
+
+do_hook('search_after_form');
+
+/*
+    search all folders option still in the works. returns a table for each
+    folder it finds a match in.
+*/
+
+$old_value = 0;
+if ($allow_thread_sort == TRUE) {
+    $old_value = $allow_thread_sort;
+    $allow_thread_sort = FALSE;
+}
 
-if ($search_all == "all") {
-    $mailbox == "";
+if ($search_all == 'all') {
+    $mailbox == '';
     $boxcount = count($boxes);
-    echo "<BR><CENTER><B>Search Results</B><CENTER><BR>\n";
+    echo '<BR><CENTER><B>' .
+         _("Search Results") .
+         "</B><CENTER><BR>\n";
     for ($x=0;$x<$boxcount;$x++) {
         if (!in_array('noselect', $boxes[$x]['flags'])) {
-           $mailbox = $boxes[$x]['unformatted'];
-       }
-       echo "<BR><CENTER><B>Folder: $mailbox</CENTER></B>";
-        if (($submit == "Search" || $submit == "Search_no_update") && !empty($what)) {
+            $mailbox = $boxes[$x]['unformatted'];
+        }
+        if (($submit == _("Search") || $submit == 'Search_no_update') && !empty($what)) {
             sqimap_mailbox_select($imapConnection, $mailbox);
-            sqimap_search($imapConnection, $where, $what, $mailbox, $color, $pos);
-       }
+            $msgs = sqimap_search($imapConnection, $where, $what, $mailbox, $color, 0, $search_all, $count_all);
+           $count_all = count($msgs);
+            printSearchMessages($msgs, $mailbox, $count_all, $imapConnection);
+            array_push($perbox_count, $count_all);
+        }
+    }
+    for ($i=0;$i<count($perbox_count);$i++) {
+        if ($perbox_count[$i]) {
+            $count_all = true;
+            break;
+        }
+    }
+    if (!$count_all) {
+       echo '<br><center>' . _("No Messages Found") . '</center>';
     }
 }
 
-//     search one folder option
-
+/*  search one folder option  */
 else {
-    if (($submit == "Search" || $submit == "Search_no_update") && !empty($what)) {
-        echo "<BR><CENTER><B>Search Results</B></CENTER>\n";
+    if (($submit == _("Search") || $submit == 'Search_no_update') && !empty($what)) {
+        echo '<br>'
+        . html_tag( 'div', '<b>' . _("Search Results") . '</b>', 'center' ) . "\n";
         sqimap_mailbox_select($imapConnection, $mailbox);
-        sqimap_search($imapConnection, $where, $what, $mailbox, $color, $pos);
+        $msgs = sqimap_search($imapConnection, $where, $what, $mailbox, $color, 0, $search_all, $count_all);
+       if (count($msgs)) {
+           printSearchMessages($msgs, $mailbox, count($msgs), $imapConnection);
+       } else {
+           echo '<br><center>' . _("No Messages Found") . '</center>';
+       }
     }
 }
 
-//     must have search terms to search
-
-if ($submit == "Search" && empty($what)) {
-    echo "<BR><CENTER><B>Please enter something to search for</B></CENTER>\n";
+/*  must have search terms to search  */
+if ($submit == _("Search") && empty($what)) {
+        echo '<br>'
+        . html_tag( 'div', '<b>Please enter something to search for</b>', 'center' ) . "\n";
 }
 
-do_hook("search_bottom");
+$allow_thread_sort = $old_value;
 
-//     all done
 
+do_hook('search_bottom');
 sqimap_logout ($imapConnection);
 echo '</body></html>';