diff options
author | thomascube <thomas@roundcube.net> | 2012-03-20 22:47:24 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-03-20 22:47:24 +0000 |
commit | 4cf42fde05ff891f6961ba60dbb1c2e4c91c39c6 (patch) | |
tree | 75e1520d4dbf92a9b8c0ae9ab3136fa2623d4172 /program/include | |
parent | a71a97fa49fb1c7fbe5e042b2cf6239f7372acb4 (diff) |
Add support for read-only address book records
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_imap.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 7038d24b9..bd8f35176 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -1346,21 +1346,21 @@ class rcube_imap extends rcube_storage * * @return rcube_result_index Search result (UIDs) */ - public function search_once($mailbox = null, $str = 'ALL') + public function search_once($folder = null, $str = 'ALL') { if (!$str) { return 'ALL'; } - if (!strlen($mailbox)) { - $mailbox = $this->mailbox; + if (!strlen($folder)) { + $folder = $this->folder; } if (!$this->check_connection()) { return new rcube_result_index(); } - $index = $this->conn->search($mailbox, $str, true); + $index = $this->conn->search($folder, $str, true); return $index; } |