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/CoreHome/CoreHome.php')
-rw-r--r--plugins/CoreHome/CoreHome.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/CoreHome.php b/plugins/CoreHome/CoreHome.php
index 19c8c7bad8..4499ee37b8 100644
--- a/plugins/CoreHome/CoreHome.php
+++ b/plugins/CoreHome/CoreHome.php
@@ -49,7 +49,7 @@ class CoreHome extends \Piwik\Plugin
public function addStylesheets(&$mergedContent)
{
$themeStyles = ThemeStyles::get();
- $mergedContent .= "\n" . $themeStyles->toLessCode();
+ $mergedContent = $themeStyles->toLessCode() . "\n" . $mergedContent;
}
public function initAuthenticationObject()