From 5fad0cd123983e957bcaf886430a534bc42d1137 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 18 Mar 2018 14:30:51 +0100 Subject: [PATCH] count from zero... --- mod/install.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mod/install.php b/mod/install.php index 049642b92..eb740c7b6 100644 --- a/mod/install.php +++ b/mod/install.php @@ -433,12 +433,12 @@ function check_funcs(&$checks) { $ck_funcs[4]['help'] = L10n::t('Error: mb_string PHP module required but not installed.'); } if (! function_exists('iconv_strlen')) { - $ck_funcs[7]['status'] = false; - $ck_funcs[7]['help'] = L10n::t('Error: iconv PHP module required but not installed.'); + $ck_funcs[6]['status'] = false; + $ck_funcs[6]['help'] = L10n::t('Error: iconv PHP module required but not installed.'); } if (! function_exists('posix_kill')) { - $ck_funcs[8]['status'] = false; - $ck_funcs[0]['help'] = L10n::t('Error: POSIX PHP module required but not installed.'); + $ck_funcs[7]['status'] = false; + $ck_funcs[7]['help'] = L10n::t('Error: POSIX PHP module required but not installed.'); } $checks = array_merge($checks, $ck_funcs); @@ -447,8 +447,8 @@ function check_funcs(&$checks) { try { $xml = new DOMDocument(); } catch (Exception $e) { - $ck_funcs[6]['status'] = false; - $ck_funcs[6]['help'] = L10n::t('Error, XML PHP module required but not installed.'); + $ck_funcs[5]['status'] = false; + $ck_funcs[5]['help'] = L10n::t('Error, XML PHP module required but not installed.'); } }