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
path: root/core
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2022-03-07 00:21:17 +0300
committerGitHub <noreply@github.com>2022-03-07 00:21:17 +0300
commitd25af6d0a0db467ffd4d4e58540906e554483879 (patch)
treed78cdd5e0781f32048fc863f84565f8efdc48635 /core
parent27faa3d8c008c97556a3ef27decd706d34b79a1a (diff)
Fix regression in plugin order determination, new param keepUnresolved is not used in function. (#18886)
Diffstat (limited to 'core')
-rw-r--r--core/AssetManager/UIAssetFetcher/PluginUmdAssetFetcher.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/AssetManager/UIAssetFetcher/PluginUmdAssetFetcher.php b/core/AssetManager/UIAssetFetcher/PluginUmdAssetFetcher.php
index 64c7a0f4cb..d56283bbaa 100644
--- a/core/AssetManager/UIAssetFetcher/PluginUmdAssetFetcher.php
+++ b/core/AssetManager/UIAssetFetcher/PluginUmdAssetFetcher.php
@@ -230,6 +230,7 @@ class PluginUmdAssetFetcher extends UIAssetFetcher
// check if dependency is not activated
if (!in_array($pluginDependency, $plugins)
&& !in_array($pluginDependency, $result)
+ && !$keepUnresolved
) {
return;
}