Fixed filter selection after filter deletion (#1488832)

pull/66/head
Aleksander Machniak 12 years ago
parent 5926684aab
commit a648ba6489

@ -1,5 +1,6 @@
- Fixed filter activation/deactivation confirmation message (#1488765)
- Moved rcube_* classes to <plugin>/lib/Roundcube for compat. with Roundcube Framework autoloader
- Fixed filter selection after filter deletion (#1488832)
* version 6.0 [2012-10-03]
-----------------------------------------------------------

@ -373,7 +373,7 @@ rcube_webmail.prototype.load_managesieveframe = function(id)
target = window.frames[this.env.contentframe];
var msgid = this.set_busy(true, 'loading');
target.location.href = this.env.comm_path+'&_action=plugin.managesieve&_framed=1'
+(id ? '&_fid='+id : '')+'&_unlock='+msgid;
+(has_id ? '&_fid='+id : '')+'&_unlock='+msgid;
}
};

Loading…
Cancel
Save