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:
authorsgiehl <stefan@piwik.org>2014-11-24 02:55:56 +0300
committersgiehl <stefan@piwik.org>2014-11-24 02:55:56 +0300
commit6840e8228a65aaa5d9239db097473708ab51b21b (patch)
tree0a694981632ded2a49a6e94d705b03931e78fe77 /plugins
parent42e26da96ea234f9fb7285dc35286e29f3a2b58d (diff)
add logo before changeing label
Diffstat (limited to 'plugins')
-rw-r--r--plugins/DevicesDetection/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DevicesDetection/API.php b/plugins/DevicesDetection/API.php
index b6c58388b9..da9c3fab96 100644
--- a/plugins/DevicesDetection/API.php
+++ b/plugins/DevicesDetection/API.php
@@ -123,8 +123,8 @@ class API extends \Piwik\Plugin\API
public function getOsFamilies($idSite, $period, $date, $segment = false)
{
$dataTable = $this->getDataTable('DevicesDetection_os', $idSite, $period, $date, $segment);
- $dataTable->filter('GroupBy', array('label', __NAMESPACE__ . '\getOSFamilyFullName'));
$dataTable->filter('ColumnCallbackAddMetadata', array('label', 'logo', __NAMESPACE__ . '\getOsFamilyLogo'));
+ $dataTable->filter('GroupBy', array('label', __NAMESPACE__ . '\getOSFamilyFullName'));
return $dataTable;
}