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:
authorThomas Steur <tsteur@users.noreply.github.com>2020-12-10 04:52:24 +0300
committerGitHub <noreply@github.com>2020-12-10 04:52:24 +0300
commit161af3f5712e3d4dc5434d024706821f6a923446 (patch)
treea6669764577501602df71a155e26cbc5faeb526c /plugins/CoreUpdater
parent7ff1e6c5d2fc4a4ab61b36d6033d598b817d8447 (diff)
New version available plugins will be updated confusing (#16890)
We've had 3 issues where people thought that a plugin is not compatible with Matomo 4 because of this screen that is misleading as it shows the current plugin dependencies: ![image](https://user-images.githubusercontent.com/273120/101269833-c6ef4d00-37d7-11eb-8df1-755686435938.png) For simplicity lets simply only show the name of the plugin as mostly plugins are only compatible with the same major version number anyway and there isn't much value in showing the current required information. Of course we could check if there is actually a version on the marketplace available etc but it would require more work.
Diffstat (limited to 'plugins/CoreUpdater')
-rw-r--r--plugins/CoreUpdater/templates/newVersionAvailable.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreUpdater/templates/newVersionAvailable.twig b/plugins/CoreUpdater/templates/newVersionAvailable.twig
index 4757d7fab1..27a45568cd 100644
--- a/plugins/CoreUpdater/templates/newVersionAvailable.twig
+++ b/plugins/CoreUpdater/templates/newVersionAvailable.twig
@@ -36,7 +36,7 @@
<ul>
{% for plugin in incompatiblePlugins %}
- <li>{{ plugin.getMissingDependenciesAsString(piwik_new_version) }}</li>
+ <li>{{ plugin.pluginName }}</li>
{% endfor %}
</ul>
{% endif %}