Skip to content

Commit

Permalink
Fix disabled create filter action
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Apr 13, 2014
1 parent faa9c89 commit 056d458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions plugins/managesieve/Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- Added optional separate interface for out-of-office management (#1488266)
- Fix disabled "create filter" action

* version 7.2 [2014-02-14]
-----------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion plugins/managesieve/managesieve.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function init_ui()
// load localization
$this->add_texts('localization/');

if (strpos($this->rc->action, 'plugin.managesieve') === 0) {
if ($this->rc->task == 'mail' || strpos($this->rc->action, 'plugin.managesieve') === 0) {
$this->include_script('managesieve.js');
}

Expand Down

0 comments on commit 056d458

Please sign in to comment.