diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-03-18 10:05:34 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-03-18 10:05:34 +0100 |
commit | 5147eea0a228e6680f0af7b6f9f2f4fe41aa921d (patch) | |
tree | 70f39ebfadd639c1915b142fa82ab7d6f2d1d47a | |
parent | 6228e3784ffbf9a66d0e1ac266d8e7f7f6884921 (diff) |
Fix notification broken in last commit
-rw-r--r-- | plugins/newmail_notifier/newmail_notifier.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/newmail_notifier/newmail_notifier.php b/plugins/newmail_notifier/newmail_notifier.php index 912ff4f66..61f7bdbaa 100644 --- a/plugins/newmail_notifier/newmail_notifier.php +++ b/plugins/newmail_notifier/newmail_notifier.php @@ -181,7 +181,11 @@ class newmail_notifier extends rcube_plugin $this->notified = true; $this->rc->output->command('plugin.newmail_notifier', - array('basic' => $basic, 'sound' => $sound, 'desktop' => $desktop)); + array( + 'basic' => $this->opt['basic'], + 'sound' => $this->opt['sound'], + 'desktop' => $this->opt['desktop'], + )); } return $args; |