diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-18 12:00:54 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-18 12:00:54 +0000 |
| commit | 9ae3d89522b753b75c4d2fadc2c736e03aad235f (patch) | |
| tree | 855dab0f47bd6c6e9b60200efd82abfe16359555 | |
| parent | af3ee84ef5ec50bd0af0d119c9487e0108463838 (diff) | |
- Don't show notifications on user action
git-svn-id: https://svn.roundcube.net/trunk@5449 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | plugins/newmail_notifier/newmail_notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/newmail_notifier/newmail_notifier.php b/plugins/newmail_notifier/newmail_notifier.php index 1f1df9e75..01e25984d 100644 --- a/plugins/newmail_notifier/newmail_notifier.php +++ b/plugins/newmail_notifier/newmail_notifier.php @@ -132,7 +132,7 @@ class newmail_notifier extends rcube_plugin */ function notify($args) { - if ($this->notified) { + if ($this->notified || !empty($_GET['_refresh'])) { return $args; } |
