diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-03 17:46:51 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-03 17:46:51 -0700 |
commit | c0edfee22454fcd9b78a3e8ae5f71b134db18dfa (patch) | |
tree | 57c7a4b593394b0f277f23d8f2031a305a9a1dc4 /Zotlabs/Module/Setup.php | |
parent | 4933aef543dbdec66f50f27599d6eb68b4a8432a (diff) | |
parent | d6a3f7765adbbf5f58c08964932d25d3c0364439 (diff) | |
download | volse-hubzilla-c0edfee22454fcd9b78a3e8ae5f71b134db18dfa.tar.gz volse-hubzilla-c0edfee22454fcd9b78a3e8ae5f71b134db18dfa.tar.bz2 volse-hubzilla-c0edfee22454fcd9b78a3e8ae5f71b134db18dfa.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'Zotlabs/Module/Setup.php')
-rw-r--r-- | Zotlabs/Module/Setup.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index d6d7eeb05..aa28204d3 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -501,6 +501,7 @@ class Setup extends \Zotlabs\Web\Controller { $this->check_add($ck_funcs, t('PDO database PHP module'), true, true); $this->check_add($ck_funcs, t('mb_string PHP module'), true, true); $this->check_add($ck_funcs, t('xml PHP module'), true, true); + $this->check_add($ck_funcs, t('zip PHP module'), true, true); if(function_exists('apache_get_modules')){ if (! in_array('mod_rewrite', apache_get_modules())) { @@ -543,8 +544,12 @@ class Setup extends \Zotlabs\Web\Controller { $ck_funcs[4]['help'] = t('Error: mb_string PHP module required but not installed.'); } if(! extension_loaded('xml')) { + $ck_funcs[5]['status'] = false; + $ck_funcs[5]['help'] = t('Error: xml PHP module required for DAV but not installed.'); + } + if(! extension_loaded('zip')) { $ck_funcs[6]['status'] = false; - $ck_funcs[6]['help'] = t('Error: xml PHP module required for DAV but not installed.'); + $ck_funcs[6]['help'] = t('Error: zip PHP module required but not installed.'); } $checks = array_merge($checks, $ck_funcs); |