alecpl
2008-11-14 697cc52cff43176edb809a0cba723ca4a27ba47d
- fixes for status filter
- don't call search second time if first call returns empty (array) result


3 files modified
30 ■■■■ changed files
program/include/rcube_imap.php 8 ●●●● patch | view | raw | blame | history
program/lib/imap.inc 6 ●●●●● patch | view | raw | blame | history
program/steps/mail/search.inc 16 ●●●●● patch | view | raw | blame | history
program/include/rcube_imap.php
@@ -288,7 +288,7 @@
   */
  function set_search_set($str=null, $msgs=null, $charset=null, $sort_field=null)
    {
    if ($msgs == null)
    if (is_array($str) && $msgs == null)
      list($str, $msgs, $charset, $sort_field) = $str;
    if ($msgs != null && !is_array($msgs))
      $msgs = split(',', $msgs);
@@ -923,12 +923,16 @@
   */
  function search($mbox_name='', $str=NULL, $charset=NULL, $sort_field=NULL)
    {
    if (!$str)
      return false;
    $mailbox = $mbox_name ? $this->_mod_mailbox($mbox_name) : $this->mailbox;
    $results = $this->_search_index($mailbox, $str, $charset, $sort_field);
    // try search with ISO charset (should be supported by server)
    if (empty($results) && !empty($charset) && $charset!='ISO-8859-1')
    // only if UTF-8 search is not supported
    if (empty($results) && !is_array($results) && !empty($charset) && $charset!='ISO-8859-1')
      {
    // convert strings to ISO-8859-1
        if(preg_match_all('/\{([0-9]+)\}\r\n/', $str, $matches, PREG_OFFSET_CAPTURE))
program/lib/imap.inc
@@ -941,8 +941,10 @@
        }
    } while (!iil_StartsWith($line, 's ', true));
    
    if (empty($data)) {
        $conn->error = $line;
    $result_code = iil_ParseResult($line);
    if ($result_code != 0) {
                $conn->error = 'iil_C_Sort: ' . $line . "\n";
        return false;
    }
    
program/steps/mail/search.inc
@@ -85,12 +85,9 @@
$search_str = trim($search_str);
// execute IMAP search
if ($search_str)
$result = $IMAP->search($mbox, $search_str, $imap_charset, $_SESSION['sort_col']);
$count = 0;
// Make sure our $result is legit..
if (is_array($result) && $result[0] != '')
{
  // Get the headers
  $result_h = $IMAP->list_headers($mbox, 1, $_SESSION['sort_col'], $_SESSION['sort_order']);
  $count = $IMAP->messagecount();
@@ -100,25 +97,24 @@
    $_SESSION['search'] = array();
  // Make sure we got the headers
  if ($result_h != NULL)
if (!empty($result_h))
  {
  if ($search_str) {
    $_SESSION['search'][$search_request] = $IMAP->get_search_set();
    $_SESSION['last_text_search'] = $str;
  }
    rcmail_js_message_list($result_h);
    $OUTPUT->show_message('searchsuccessful', 'confirmation', array('nr' => $count));
  }
}
else
{
  $OUTPUT->show_message('searchnomatch', 'notice');
  $search_request = -1;
}
// update message count display
$pages = ceil($count/$IMAP->page_size);
$OUTPUT->set_env('search_request', $search_request);
$OUTPUT->set_env('search_request', $search_str ? $search_request : -1);
$OUTPUT->set_env('messagecount', $count);
$OUTPUT->set_env('pagecount', $pages);
$OUTPUT->set_env('pagecount', ceil($count/$IMAP->page_size));
$OUTPUT->command('set_rowcount', rcmail_get_messagecount_text($count, 1));
$OUTPUT->send();