diff options
author | thomascube <thomas@roundcube.net> | 2010-11-24 15:44:05 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-11-24 15:44:05 +0000 |
commit | e31afbbc9bcfe08b640123d0748f035405ee83b1 (patch) | |
tree | 15e56524a2f944c4bd364a9cf903e9fc3d1ab5e8 /program/include/rcube_imap_generic.php | |
parent | e0a736609ca007f44b992510f96ae51c274fab13 (diff) |
Fix php warnings; Courier doesn't like spaces appended to the EXPUNGE command
Diffstat (limited to 'program/include/rcube_imap_generic.php')
-rw-r--r-- | program/include/rcube_imap_generic.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/program/include/rcube_imap_generic.php b/program/include/rcube_imap_generic.php index 2cffd00f4..16c9d4a64 100644 --- a/program/include/rcube_imap_generic.php +++ b/program/include/rcube_imap_generic.php @@ -1574,8 +1574,10 @@ class rcube_imap_generic // Clear internal status cache unset($this->data['STATUS:'.$mailbox]); - $result = $this->execute($messages ? 'UID EXPUNGE' : 'EXPUNGE', - array($messages), self::COMMAND_NORESPONSE); + if ($messages) + $result = $this->execute('UID EXPUNGE', array($messages), self::COMMAND_NORESPONSE); + else + $result = $this->execute('EXPUNGE', null, self::COMMAND_NORESPONSE); if ($result == self::ERROR_OK) { $this->selected = ''; // state has changed, need to reselect |