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:
authormattpiwik <matthieu.aubry@gmail.com>2011-03-26 15:56:32 +0300
committermattpiwik <matthieu.aubry@gmail.com>2011-03-26 15:56:32 +0300
commit614301326c22aa6c6594454f5978b931c614ef98 (patch)
tree31286bccfc44b60cda9dc88597ee14ca27a41bd9 /libs/upgradephp
parent7f6dd8243efe6164bfe22a5bb8860844c66a4129 (diff)
Fixes #1578
git-svn-id: http://dev.piwik.org/svn/trunk@4201 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'libs/upgradephp')
-rw-r--r--libs/upgradephp/upgrade.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/upgradephp/upgrade.php b/libs/upgradephp/upgrade.php
index 919f64f317..0dc50cffa9 100644
--- a/libs/upgradephp/upgrade.php
+++ b/libs/upgradephp/upgrade.php
@@ -1009,3 +1009,9 @@ if (!function_exists('utf8_decode')) {
return $data;
}
}
+
+if(!function_exists('mb_strtolower')) {
+ function mb_strtolower($input, $charset) {
+ return strtolower($input);
+ }
+}