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/UserSettings/functions.php')
-rw-r--r--plugins/UserSettings/functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/UserSettings/functions.php b/plugins/UserSettings/functions.php
index 0075f634fb..f2ae5f4f7a 100644
--- a/plugins/UserSettings/functions.php
+++ b/plugins/UserSettings/functions.php
@@ -22,7 +22,7 @@ require_once PIWIK_INCLUDE_PATH . '/libs/UserAgentParser/UserAgentParser.php';
function getPluginsLogo($oldLabel)
{
- if($oldLabel == Piwik_Translate('General_Others')) {
+ if ($oldLabel == Piwik_Translate('General_Others')) {
return false;
}
return 'plugins/UserSettings/images/plugins/' . $oldLabel . '.gif';
@@ -161,11 +161,11 @@ function getBrowserVersion($str)
function getLogoImageFromId($dir, $id)
{
- $path = $dir.'/'.$id.'.gif';
+ $path = $dir . '/' . $id . '.gif';
if (file_exists(PIWIK_INCLUDE_PATH . '/' . $path)) {
return $path;
} else {
- return $dir.'/UNK.gif';
+ return $dir . '/UNK.gif';
}
}