Skip to content
Snippets Groups Projects
Commit 4f82f4e2 authored by Jared Hancock's avatar Jared Hancock
Browse files

Hotfix uninitialized parameter

parent 6199e24e
No related branches found
No related tags found
No related merge requests found
......@@ -215,10 +215,10 @@ class Bootstrap {
}
define('LATIN1_UC_CHARS', 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝ');
define('LATIN1_LC_CHARS', 'àáâãäåæçèéêëìíîïðñòóôõöøùúûüý');
function mb_strtoupper($a) {
function mb_strtoupper($str) {
return strtoupper(strtr($str, LATIN1_LC_CHARS, LATIN1_UC_CHARS));
}
function mb_strtolower($a) {
function mb_strtolower($str) {
return strtolower(strtr($str, LATIN1_UC_CHARS, LATIN1_LC_CHARS));
}
define('MB_CASE_LOWER', 1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment