Changeset 4263 in subversion
- Timestamp:
- Nov 24, 2010 10:44:05 AM (3 years ago)
- Location:
- trunk/roundcubemail/program/include
- Files:
-
- 3 edited
-
iniset.php (modified) (2 diffs)
-
rcube_imap.php (modified) (1 diff)
-
rcube_imap_generic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/iniset.php
r4078 r4263 92 92 '/Mail_(.+)/', 93 93 '/Net_(.+)/', 94 '/Auth_(.+)/', 94 95 '/^html_.+/', 95 96 '/^utf8$/', … … 99 100 'Mail/\\1', 100 101 'Net/\\1', 102 'Auth/\\1', 101 103 'html', 102 104 'utf8.class', -
trunk/roundcubemail/program/include/rcube_imap.php
r4255 r4263 3237 3237 foreach ($this->namespace['shared'] as $ns) { 3238 3238 foreach ((array)$ns as $root) { 3239 if ( strpos($mbox_name, $root[0]) === 0) {3239 if ($root[0] && strpos($mbox_name, $root[0]) === 0) { 3240 3240 return $mbox_name; 3241 3241 } -
trunk/roundcubemail/program/include/rcube_imap_generic.php
r4256 r4263 1575 1575 unset($this->data['STATUS:'.$mailbox]); 1576 1576 1577 $result = $this->execute($messages ? 'UID EXPUNGE' : 'EXPUNGE', 1578 array($messages), self::COMMAND_NORESPONSE); 1577 if ($messages) 1578 $result = $this->execute('UID EXPUNGE', array($messages), self::COMMAND_NORESPONSE); 1579 else 1580 $result = $this->execute('EXPUNGE', null, self::COMMAND_NORESPONSE); 1579 1581 1580 1582 if ($result == self::ERROR_OK) {
Note: See TracChangeset
for help on using the changeset viewer.
