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:
Diffstat (limited to 'plugins/DevicesDetection/Controller.php')
-rw-r--r--plugins/DevicesDetection/Controller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DevicesDetection/Controller.php b/plugins/DevicesDetection/Controller.php
index dff2b25d67..254f2b3ab6 100644
--- a/plugins/DevicesDetection/Controller.php
+++ b/plugins/DevicesDetection/Controller.php
@@ -47,7 +47,7 @@ class Controller extends \Piwik\Plugin\Controller
$view->os_family_logo = getOsFamilyLogo($view->os_family);
$view->os_version = $uaParser->getOs('version');
$view->device_type = getDeviceTypeLabel($uaParser->getDeviceName());
- $view->device_type_logo = getDeviceTypeLogo($uaParser->getDeviceName());
+ $view->device_type_logo = getDeviceTypeLogo($uaParser->getDevice());
$view->device_model = $uaParser->getModel();
$view->device_brand = getDeviceBrandLabel($uaParser->getBrand());
$view->device_brand_logo = getBrandLogo($view->device_brand);
@@ -112,7 +112,7 @@ class Controller extends \Piwik\Plugin\Controller
$deviceTypes = \DeviceDetector\Parser\Device\AbstractDeviceParser::getAvailableDeviceTypes();
foreach ($deviceTypes as $name => $id) {
- $list[$name] = getDeviceTypeLogo($name);
+ $list[$name] = getDeviceTypeLogo($id);
}
break;
}