| @@ 180-189 (lines=10) @@ | ||
| 177 | $ent_arr = preg_split('~(' . $ent_list . '|.)~' . ($utf8 ? 'u' : '') . '', $ent_check($string), -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); |
|
| 178 | return $length === null ? implode('', array_slice($ent_arr, $start)) : implode('', array_slice($ent_arr, $start, $length)); |
|
| 179 | }, |
|
| 180 | 'strtolower' => $utf8 ? function($string) use ($sourcedir) |
|
| 181 | { |
|
| 182 | if (!function_exists('mb_strtolower')) |
|
| 183 | { |
|
| 184 | require_once($sourcedir . '/Subs-Charset.php'); |
|
| 185 | return utf8_strtolower($string); |
|
| 186 | } |
|
| 187 | ||
| 188 | return mb_strtolower($string, 'UTF-8'); |
|
| 189 | } : 'strtolower', |
|
| 190 | 'strtoupper' => $utf8 ? function($string) |
|
| 191 | { |
|
| 192 | global $sourcedir; |
|
| @@ 1442-1448 (lines=7) @@ | ||
| 1439 | reloadSettings(); |
|
| 1440 | ||
| 1441 | // We need this to properly hash the password for Admin |
|
| 1442 | $smcFunc['strtolower'] = $db_character_set != 'utf8' && $txt['lang_character_set'] != 'UTF-8' ? 'strtolower' : function($string) { |
|
| 1443 | global $sourcedir; |
|
| 1444 | if (function_exists('mb_strtolower')) |
|
| 1445 | return mb_strtolower($string, 'UTF-8'); |
|
| 1446 | require_once($sourcedir . '/Subs-Charset.php'); |
|
| 1447 | return utf8_strtolower($string); |
|
| 1448 | }; |
|
| 1449 | ||
| 1450 | if (!isset($_POST['username'])) |
|
| 1451 | $_POST['username'] = ''; |
|
| @@ 1700-1706 (lines=7) @@ | ||
| 1697 | ||
| 1698 | // This function is needed to do the updateStats('subject') call. |
|
| 1699 | $smcFunc['strtolower'] = $db_character_set != 'utf8' && $txt['lang_character_set'] != 'UTF-8' ? 'strtolower' : |
|
| 1700 | function($string){ |
|
| 1701 | global $sourcedir; |
|
| 1702 | if (function_exists('mb_strtolower')) |
|
| 1703 | return mb_strtolower($string, 'UTF-8'); |
|
| 1704 | require_once($sourcedir . '/Subs-Charset.php'); |
|
| 1705 | return utf8_strtolower($string); |
|
| 1706 | }; |
|
| 1707 | ||
| 1708 | $request = $smcFunc['db_query']('', ' |
|
| 1709 | SELECT id_msg |
|