From dd9ebc8957b74b2d0fd10b722c4b0b177946ba61 Mon Sep 17 00:00:00 2001 From: Joshua Brule Date: Tue, 22 Sep 2020 12:16:41 -0500 Subject: [PATCH] Matomo 4 compatibility changes. Added generation documentation link to plugin settings page --- CHANGELOG.md | 4 ++-- SystemSettings.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7731366..5ee283d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ ## Changelog - -3.0.0 Initial Version \ No newline at end of file +- 4.0.1 Matomo 4 Compatible. Fixed generator documentation link in Plugin Settings +- 3.0.0 Initial Version diff --git a/SystemSettings.php b/SystemSettings.php index 674743a..e9fb64c 100644 --- a/SystemSettings.php +++ b/SystemSettings.php @@ -37,7 +37,7 @@ private function createSharedSecretSetting() $field->title = 'Shared Secret'; $field->uiControl = FieldConfig::UI_CONTROL_TEXT; $field->description = 'Set the shared secret. This value should not be exposed to users.'; - $field->inlineHelp = '
NOTICE: The access provider must use this same value for its secret.

How do I create an access provider?'; + $field->inlineHelp = '
NOTICE: The access provider must use this same value for its secret.

How do I create an access provider?'; $field->validators[] = new NotEmpty(); $field->validators[] = new CharacterLength(10,500); });