summaryrefslogtreecommitdiff
path: root/plugins/newmail_notifier
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-03-18 10:05:34 +0100
committerAleksander Machniak <alec@alec.pl>2013-03-18 10:05:34 +0100
commit5147eea0a228e6680f0af7b6f9f2f4fe41aa921d (patch)
tree70f39ebfadd639c1915b142fa82ab7d6f2d1d47a /plugins/newmail_notifier
parent6228e3784ffbf9a66d0e1ac266d8e7f7f6884921 (diff)
Fix notification broken in last commit
Diffstat (limited to 'plugins/newmail_notifier')
-rw-r--r--plugins/newmail_notifier/newmail_notifier.php6
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;