Skip to content

Commit

Permalink
Matomo 4 compatibility changes. Added generation documentation link t…
Browse files Browse the repository at this point in the history
…o plugin settings page
  • Loading branch information
Joshua Brule committed Sep 22, 2020
1 parent 71e4d87 commit dd9ebc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Changelog

3.0.0 Initial Version
- 4.0.1 Matomo 4 Compatible. Fixed generator documentation link in Plugin Settings
- 3.0.0 Initial Version
2 changes: 1 addition & 1 deletion SystemSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '<br /><strong>NOTICE:</strong> The access provider must use this same value for its secret.<br /><br /><a target="_blank" href="">How do I create an access provider?</a>';
$field->inlineHelp = '<br /><strong>NOTICE:</strong> The access provider must use this same value for its secret.<br /><br /><a target="_blank" href="https://github.com/jbrule/matomoplugin-SiteAccessProvisioner">How do I create an access provider?</a>';
$field->validators[] = new NotEmpty();
$field->validators[] = new CharacterLength(10,500);
});
Expand Down

0 comments on commit dd9ebc8

Please sign in to comment.