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:
authormattab <matthieu.aubry@gmail.com>2015-09-08 04:16:04 +0300
committermattab <matthieu.aubry@gmail.com>2015-09-08 04:16:04 +0300
commitd9a08c764c7f82d24228f12f86d5da5f22b65df0 (patch)
treec2dee1398184f1d35e1fa48f8ea9bf06ece8eaf1 /plugins/CoreUpdater
parent7c9382cc039eeaa615ca1b832b6e8011175928ab (diff)
Sort dimensions by name, when displaying in UI, to prevent random order in UI tests
Diffstat (limited to 'plugins/CoreUpdater')
-rw-r--r--plugins/CoreUpdater/Commands/Update.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/CoreUpdater/Commands/Update.php b/plugins/CoreUpdater/Commands/Update.php
index 0f5566e394..4b4d79e287 100644
--- a/plugins/CoreUpdater/Commands/Update.php
+++ b/plugins/CoreUpdater/Commands/Update.php
@@ -312,6 +312,8 @@ class Update extends ConsoleCommand
$dimensions[] = $componentName;
}
}
+
+ sort($dimensions);
return $dimensions;
}