Changeset 3204 in subversion
- Timestamp:
- Jan 13, 2010 7:37:51 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/roundcubemail/program/include/rcube_imap.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcube_imap.php
r3186 r3204 2894 2894 return $mbox_name; 2895 2895 2896 if (!empty($this->root_dir) && $mode=='in') 2897 $mbox_name = $this->root_dir.$this->delimiter.$mbox_name; 2898 else if (strlen($this->root_dir) && $mode=='out') 2899 $mbox_name = substr($mbox_name, strlen($this->root_dir)+1); 2900 2896 if (!empty($this->root_dir)) { 2897 if ($mode=='in') 2898 $mbox_name = $this->root_dir.$this->delimiter.$mbox_name; 2899 else if (!empty($mbox_name)) // $mode=='out' 2900 $mbox_name = substr($mbox_name, strlen($this->root_dir)+1); 2901 } 2902 2901 2903 return $mbox_name; 2902 2904 }
Note: See TracChangeset
for help on using the changeset viewer.
