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-12-08 23:02:36 +0300
committersgiehl <stefan@piwik.org>2014-12-08 23:02:36 +0300
commit49577cd232a807024c8835a57d3b790622bb5ff4 (patch)
treeacb4cc24ad19e928719ca0bcae3819773d1d4d8e /plugins/DevicesDetection/functions.php
parent0e058f9cb3c6ca8b8331276e96fa56483015e590 (diff)
refs #3962 - moved os/browser images to DevicesDetection plugin
Diffstat (limited to 'plugins/DevicesDetection/functions.php')
-rw-r--r--plugins/DevicesDetection/functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DevicesDetection/functions.php b/plugins/DevicesDetection/functions.php
index c8fe989045..8ab0ffe925 100644
--- a/plugins/DevicesDetection/functions.php
+++ b/plugins/DevicesDetection/functions.php
@@ -80,7 +80,7 @@ function getBrowserName($label)
*/
function getBrowserLogo($short)
{
- $path = 'plugins/UserSettings/images/browsers/%s.gif';
+ $path = 'plugins/DevicesDetection/images/browsers/%s.gif';
// If name is given instead of short code, try to find matching shortcode
if (strlen($short) > 2) {
@@ -258,7 +258,7 @@ function _mapLegacyOsShortCodes($shortCode)
*/
function getOsLogo($short)
{
- $path = 'plugins/UserSettings/images/os/%s.gif';
+ $path = 'plugins/DevicesDetection/images/os/%s.gif';
$short = _mapLegacyOsShortCodes($short);