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:
authormattab <matthieu.aubry@gmail.com>2016-10-02 23:27:29 +0300
committermattab <matthieu.aubry@gmail.com>2016-10-02 23:27:29 +0300
commitcdd380b519de005035fc2f7122a0f2427672f3c2 (patch)
tree406e456109fcf30f73f588c2f55b625745e478ce
parent75871fcb80678b03f30f978d9183668bd4ceaf2b (diff)
Make notification ID unique
-rw-r--r--core/Plugin/ControllerAdmin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Plugin/ControllerAdmin.php b/core/Plugin/ControllerAdmin.php
index d172051edf..f24246944f 100644
--- a/core/Plugin/ControllerAdmin.php
+++ b/core/Plugin/ControllerAdmin.php
@@ -185,7 +185,7 @@ abstract class ControllerAdmin extends Controller
$notification->context = Notification::CONTEXT_WARNING;
$notification->type = Notification::TYPE_TRANSIENT;
$notification->flags = Notification::FLAG_NO_CLEAR;
- NotificationManager::notify('DeprecatedPHPVersionCheck', $notification);
+ NotificationManager::notify('PHPVersionTooOldForNewestPiwikCheck', $notification);
}