Fix so subscribed non-existing/non-accessible shared folder can be unsubscribed

Conflicts:

	CHANGELOG
pull/25/head
Aleksander Machniak 12 years ago
parent f26f73a1a3
commit 51d1a02cad

@ -1,6 +1,10 @@
CHANGELOG Roundcube Webmail
===========================
- Fix so subscribed non-existing/non-accessible shared folder can be unsubscribed
RELEASE 0.8.1
-------------
- Fix bug where domain name was converted to lower-case even with login_lc=false (#1488593)
- Fix lower-casing email address on replies (#1488598)
- Fix line separator in exported messages (#1488603)

@ -324,8 +324,8 @@ function rcube_subscription_form($attrib)
}
}
}
// check if the folder is shared, then disable subscription option on it
if (!$disabled && $folder['virtual'] && !empty($namespace)) {
// check if the folder is shared, then disable subscription option on it (if not subscribed already)
if (!$disabled && !$subscribed && $folder['virtual'] && !empty($namespace)) {
$tmp_ns = array_merge((array)$namespace['other'], (array)$namespace['shared']);
foreach ($tmp_ns as $item) {
if (strpos($folder['id'], $item[0]) === 0) {

Loading…
Cancel
Save