Fix regression where creation of default folders wasn't functioning without prefix (#5460)

pull/5754/head
Aleksander Machniak 8 years ago
parent 5c206a5037
commit 41d72ca7da

@ -3,6 +3,7 @@ CHANGELOG Roundcube Webmail
- Fix bug where folders list would scroll to top when clicking on subscription checkbox (#5447)
- Fix decoding of GB2312/GBK text when iconv is not installed (#5448)
- Fix regression where creation of default folders wasn't functioning without prefix (#5460)
RELEASE 1.2.2
-------------

@ -453,6 +453,11 @@ class rcube_imap extends rcube_storage
$ns = $this->namespace;
if ($name) {
// an alias for BC
if ($name == 'prefix') {
$name = 'prefix_in';
}
return isset($ns[$name]) ? $ns[$name] : null;
}

Loading…
Cancel
Save