Skip to content

Commit 999fe61

Browse files
committed
do not check for deprecated functions in installer
our UTF-8 fallbacks should not fall back on the utf8_decode/encode functions anymore, so this check is no longer useful sligthly related to dokuwiki#4354
1 parent f1c5f12 commit 999fe61

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

install.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -633,11 +633,6 @@ function check_functions()
633633
'preg_replace file_get_contents htmlspecialchars_decode ' .
634634
'spl_autoload_register stream_select fsockopen pack xml_parser_create');
635635

636-
if (!function_exists('mb_substr')) {
637-
$funcs[] = 'utf8_encode';
638-
$funcs[] = 'utf8_decode';
639-
}
640-
641636
if (!function_exists('mail')) {
642637
if (strpos(ini_get('disable_functions'), 'mail') !== false) {
643638
$disabled = $lang['i_disabled'];

0 commit comments

Comments
 (0)