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/functions.php')
-rw-r--r--plugins/DevicesDetection/functions.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/plugins/DevicesDetection/functions.php b/plugins/DevicesDetection/functions.php
index 8aa6f312d3..663e3361e9 100644
--- a/plugins/DevicesDetection/functions.php
+++ b/plugins/DevicesDetection/functions.php
@@ -16,13 +16,12 @@ use DeviceDetector\Parser\Client\Browser AS BrowserParser;
function getBrandLogo($label)
{
+ $path = 'plugins/Morpheus/icons/dist/brand/%s.png';
$label = preg_replace("/[^a-z0-9_-]+/i", "_", $label);
- $path = dirname(__FILE__) . '/images/brand/' . $label . '.png';
- if (file_exists($path)) {
- return 'plugins/DevicesDetection/images/brand/' . $label . '.png';
- } else {
- return 'plugins/DevicesDetection/images/brand/Unknown.png';
+ if (!file_exists(PIWIK_INCLUDE_PATH . '/' . sprintf($path, $label))) {
+ $label = "unk";
}
+ return sprintf($path, $label);
}
function getBrowserFamilyFullName($label)