Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-02-25 07:36:43 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-02-25 07:36:43 +0300
commit59d77db47d8f6b141ad0b46ff65c306f98efdce9 (patch)
treedf4880af46f0d40a8b6b3d689e81884233e4ef9d /plugins/Monolog
parent56e3ed3d255f9503316e03ec3673dd16721cfe99 (diff)
#7289 Logs displayed as notifications can now be closed
Diffstat (limited to 'plugins/Monolog')
-rw-r--r--plugins/Monolog/Handler/WebNotificationHandler.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Monolog/Handler/WebNotificationHandler.php b/plugins/Monolog/Handler/WebNotificationHandler.php
index b36e9480de..7b3098d315 100644
--- a/plugins/Monolog/Handler/WebNotificationHandler.php
+++ b/plugins/Monolog/Handler/WebNotificationHandler.php
@@ -41,6 +41,7 @@ class WebNotificationHandler extends AbstractProcessingHandler
$notification = new Notification($message);
$notification->context = $context;
+ $notification->flags = 0;
try {
Manager::notify(Common::getRandomString(), $notification);
} catch (Zend_Session_Exception $e) {