diff options
author | Andreas Gohr <andi@splitbrain.org> | 2020-07-27 12:34:16 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2020-07-27 12:34:16 +0200 |
commit | 670dc13d7e0a8053c08281414645d9c0c3a11a36 (patch) | |
tree | 88533c49adf7f9ae9057f560be9ba4327959a4ab /install.php | |
parent | 19ea627a054675ea741796801c537ddecbc395a4 (diff) | |
download | dokuwiki-670dc13d7e0a8053c08281414645d9c0c3a11a36.tar.gz dokuwiki-670dc13d7e0a8053c08281414645d9c0c3a11a36.zip |
Installer: check for XML parser method. fixes #3207
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index f1d31ecd3..e8e927933 100644 --- a/install.php +++ b/install.php @@ -585,7 +585,7 @@ function check_functions(){ 'ob_start opendir parse_ini_file readfile realpath '. 'rename rmdir serialize session_start unlink usleep '. 'preg_replace file_get_contents htmlspecialchars_decode '. - 'spl_autoload_register stream_select fsockopen pack'); + 'spl_autoload_register stream_select fsockopen pack xml_parser_create'); if (!function_exists('mb_substr')) { $funcs[] = 'utf8_encode'; |