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:
authorStefan Giehl <stefan@matomo.org>2019-06-10 12:50:29 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2019-06-10 12:50:29 +0300
commit7b6ba57d584dd985a661a47924a22ae29b092422 (patch)
tree8dbb9f2c04a7e67f0cf2331db42e460044983875 /plugins/Feedback
parent31bcfbe6a1028cc3ca2ce972d1488667b165d0c4 (diff)
Fix incorrect param count for sprintf (#14506)
Diffstat (limited to 'plugins/Feedback')
-rw-r--r--plugins/Feedback/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Feedback/API.php b/plugins/Feedback/API.php
index 5915663d4c..a5286c0fc7 100644
--- a/plugins/Feedback/API.php
+++ b/plugins/Feedback/API.php
@@ -43,7 +43,7 @@ class API extends \Piwik\Plugin\API
$likeText = 'No';
}
- $body = sprintf("Feature: %s\nLike: %s\n", $featureName, $likeText, $message);
+ $body = sprintf("Feature: %s\nLike: %s\n", $featureName, $likeText);
$feedbackMessage = "";
if (!empty($message) && $message != 'undefined') {