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:
authorrobocoder <anthon.pang@gmail.com>2009-10-15 05:33:02 +0400
committerrobocoder <anthon.pang@gmail.com>2009-10-15 05:33:02 +0400
commitb068e6ce64c2c7985a8b33dcb89574f0892e8c8a (patch)
treef9b3541666afc2a794c96607bfea39937fd8f55d /core/Translate.php
parentafd83a9eedd5e3d14925e2d3d8cc3d5b46bec7a8 (diff)
refix #1003
git-svn-id: http://dev.piwik.org/svn/trunk@1502 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Translate.php')
-rw-r--r--core/Translate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Translate.php b/core/Translate.php
index 937fd10ea2..96bf50c4a5 100644
--- a/core/Translate.php
+++ b/core/Translate.php
@@ -60,7 +60,7 @@ class Piwik_Translate
$GLOBALS['Piwik_translations'] = array();
}
// we could check that no string overlap here
- $GLOBALS['Piwik_translations'] = array_filter(array_merge($GLOBALS['Piwik_translations'], $translation), 'strlen');
+ $GLOBALS['Piwik_translations'] = array_merge($GLOBALS['Piwik_translations'], array_filter($translation, 'strlen'));
}
/**