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:
authordiosmosis <benaka@piwik.pro>2015-09-05 00:03:11 +0300
committerdiosmosis <benaka@piwik.pro>2015-09-05 00:03:11 +0300
commit245260cdddcd807ea21c0f1acc0e7c6ff198c211 (patch)
tree9a5bc62f15621e200b1f7e3c6b555ef0a783a450 /core/Plugin/ControllerAdmin.php
parenta38c3e0d3e8dc0220c00d2c4ec89acede58885a0 (diff)
Tiny tweak to warning message when tracker debug is enabled in config.
Diffstat (limited to 'core/Plugin/ControllerAdmin.php')
-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 f17abe7141..3431d70156 100644
--- a/core/Plugin/ControllerAdmin.php
+++ b/core/Plugin/ControllerAdmin.php
@@ -149,7 +149,7 @@ abstract class ControllerAdmin extends Controller
TrackerConfig::getConfigValue($trackerSetting)) {
$message = Piwik::translate('General_WarningDebugOnDemandEnabled');
- $message = sprintf($message, '"' . $trackerSetting . '"', '"[Tracker]' . $trackerSetting . '"', '"0"',
+ $message = sprintf($message, '"' . $trackerSetting . '"', '"[Tracker] ' . $trackerSetting . '"', '"0"',
'"config/config.ini.php"');
$notification = new Notification($message);
$notification->title = Piwik::translate('General_Warning');