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:
authormattab <matthieu.aubry@gmail.com>2015-12-22 05:43:22 +0300
committermattab <matthieu.aubry@gmail.com>2015-12-22 05:43:22 +0300
commite7147488dc94d6e527cef767c2be54ad62061314 (patch)
treea3b12544d3588cfad7bb8958a36ad504f9618860 /core/FrontController.php
parent12174ce107e5f3ddad59996f2cef295b2b6bc85b (diff)
Higher resolution 32x32 favicon https://github.com/piwik/piwik/issues/8869
Diffstat (limited to 'core/FrontController.php')
-rw-r--r--core/FrontController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/FrontController.php b/core/FrontController.php
index 780960465e..40f8f38155 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -395,7 +395,7 @@ class FrontController extends Singleton
} catch (Exception $ex) {
}
$logoUrl = $logoUrl ?: 'plugins/Morpheus/images/logo-header.png';
- $faviconUrl = $faviconUrl ?: 'plugins/CoreHome/images/favicon.ico';
+ $faviconUrl = $faviconUrl ?: 'plugins/CoreHome/images/favicon.png';
$page = file_get_contents(PIWIK_INCLUDE_PATH . '/plugins/Morpheus/templates/maintenance.tpl');
$page = str_replace('%logoUrl%', $logoUrl, $page);