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:
authorLukas Winkler <git@lw1.at>2019-10-30 22:38:28 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2019-10-30 22:38:28 +0300
commit0ff4110e427c8d610778a7280b155c12e20a55e3 (patch)
tree5cece4d27137de552dabbfd33daab03197f5ad19 /plugins/DevicesDetection
parentaec08b6d6c8566b15f518a03b5c93e95c8f91607 (diff)
Revert umlaut icons (#15079)
* revert umlauts in icons * update icons
Diffstat (limited to 'plugins/DevicesDetection')
-rw-r--r--plugins/DevicesDetection/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DevicesDetection/functions.php b/plugins/DevicesDetection/functions.php
index 578c2f3493..c4f182a5a1 100644
--- a/plugins/DevicesDetection/functions.php
+++ b/plugins/DevicesDetection/functions.php
@@ -17,7 +17,7 @@ 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);
+ $label = preg_replace("/[^a-z0-9_\-]+/i", "_", $label);
if (!file_exists(PIWIK_INCLUDE_PATH . '/' . sprintf($path, $label))) {
$label = "unk";
}