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

Merge pull request #110 from greezybacon/issue/no-name


Hotfix uninitialized parameter

Reviewed-By: default avatarJared Hancock <jared@osticket.com>
parents eee8c11e 4f82f4e2
No related branches found
No related tags found
No related merge requests found
...@@ -215,10 +215,10 @@ class Bootstrap { ...@@ -215,10 +215,10 @@ class Bootstrap {
} }
define('LATIN1_UC_CHARS', 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝ'); define('LATIN1_UC_CHARS', 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝ');
define('LATIN1_LC_CHARS', 'àáâãäåæçèéêëìíîïðñòóôõöøùúûüý'); define('LATIN1_LC_CHARS', 'àáâãäåæçèéêëìíîïðñòóôõöøùúûüý');
function mb_strtoupper($a) { function mb_strtoupper($str) {
return strtoupper(strtr($str, LATIN1_LC_CHARS, LATIN1_UC_CHARS)); 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)); return strtolower(strtr($str, LATIN1_UC_CHARS, LATIN1_LC_CHARS));
} }
define('MB_CASE_LOWER', 1); define('MB_CASE_LOWER', 1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment