From 4f82f4e2a7411da03f691abcdae098a6167c4207 Mon Sep 17 00:00:00 2001
From: Jared Hancock <jared@osticket.com>
Date: Thu, 7 Nov 2013 23:06:03 +0000
Subject: [PATCH] Hotfix uninitialized parameter

---
 bootstrap.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bootstrap.php b/bootstrap.php
index b303616ff..c37e3f6f0 100644
--- a/bootstrap.php
+++ b/bootstrap.php
@@ -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);
-- 
GitLab