diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-24 15:44:05 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-11-24 15:44:05 +0000 |
| commit | 252bfe3bcad5a5940023abf316ff516872f4df41 (patch) | |
| tree | b6b3e7b619014315cb80ec428a7446c9a0b86023 /roundcubemail/program/include/rcube_imap_generic.php | |
| parent | 7936cf7d5580526e666d6d71531589135eb01886 (diff) | |
Fix php warnings; Courier doesn't like spaces appended to the EXPUNGE command
git-svn-id: https://svn.roundcube.net/trunk@4263 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_imap_generic.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap_generic.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_imap_generic.php b/roundcubemail/program/include/rcube_imap_generic.php index 2cffd00f4..16c9d4a64 100644 --- a/roundcubemail/program/include/rcube_imap_generic.php +++ b/roundcubemail/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 |
