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 Aubry <mattab@users.noreply.github.com>2020-04-21 11:08:55 +0300
committerGitHub <noreply@github.com>2020-04-21 11:08:55 +0300
commite3119fc2b46e10a526c2b8a1b8de98837ed01f5b (patch)
treee2cbb6d4b134dc3566027b9da5acae35fb9b47d3
parent51671aff44f2ec35174f2a64a7dbd66147799ee8 (diff)
Fix typo in error message (#15835)
-rw-r--r--plugins/Widgetize/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Widgetize/Controller.php b/plugins/Widgetize/Controller.php
index 8481f0a609..4bd27b02ad 100644
--- a/plugins/Widgetize/Controller.php
+++ b/plugins/Widgetize/Controller.php
@@ -42,7 +42,7 @@ class Controller extends \Piwik\Plugin\Controller
if ($controllerName == 'CoreHome' && $actionName == 'index') {
$message = 'CoreHome cannot be widgetized. ' .
- 'You can enable it to be embedded directly into an iframe (passing module=CoreHme instead of module=Widgetize) ' .
+ 'You can enable it to be embedded directly into an iframe (passing module=CoreHome instead of module=Widgetize) ' .
'instead by enabling the \'enable_framed_pages\' setting in your config. ' .
'See https://matomo.org/faq/how-to/faq_193/ for more info.';
throw new \Exception($message);