diff options
author | alecpl <alec@alec.pl> | 2011-12-01 09:15:57 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-12-01 09:15:57 +0000 |
commit | 8751881e1d74825801c3148831d431be69a4e939 (patch) | |
tree | 0e48030fb98944433ad4f93d2bc4206953ffe9a0 /program/steps | |
parent | b1fa1ab50d3e13d9af1b9e6834131ae7c6298d7b (diff) |
- Remove unused result
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/search.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/search.inc b/program/steps/mail/search.inc index 593eac427..49f31e0c1 100644 --- a/program/steps/mail/search.inc +++ b/program/steps/mail/search.inc @@ -107,7 +107,7 @@ $search_str = trim($search_str); // execute IMAP search if ($search_str) - $result = $IMAP->search($mbox, $search_str, $imap_charset, $_SESSION['sort_col']); + $IMAP->search($mbox, $search_str, $imap_charset, $_SESSION['sort_col']); // Get the headers $result_h = $IMAP->list_headers($mbox, 1, $_SESSION['sort_col'], $_SESSION['sort_order']); |