diff options
author | friendica <info@friendica.com> | 2012-04-16 22:58:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-16 22:58:52 -0700 |
commit | 7ebca2b37d98f5865f6d006300c894ec9c44f165 (patch) | |
tree | b1dd70927dc595aaecd38819fb776a0cf8e11b2e /mod/install.php | |
parent | fd2f7dd6ae8871f09674a5325fd4d4ccea56b623 (diff) | |
download | volse-hubzilla-7ebca2b37d98f5865f6d006300c894ec9c44f165.tar.gz volse-hubzilla-7ebca2b37d98f5865f6d006300c894ec9c44f165.tar.bz2 volse-hubzilla-7ebca2b37d98f5865f6d006300c894ec9c44f165.zip |
rev update
Diffstat (limited to 'mod/install.php')
-rw-r--r-- | mod/install.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/install.php b/mod/install.php index 2eb98ee91..6f5552076 100644 --- a/mod/install.php +++ b/mod/install.php @@ -380,9 +380,9 @@ function check_funcs(&$checks) { if(function_exists('apache_get_modules')){ if (! in_array('mod_rewrite',apache_get_modules())) { - check_add($ck_funcs, t('Apace mod_rewrite module'), false, true, t('Error: Apache webserver mod-rewrite module is required but not installed.')); + check_add($ck_funcs, t('Apache mod_rewrite module'), false, true, t('Error: Apache webserver mod-rewrite module is required but not installed.')); } else { - check_add($ck_funcs, t('Apace mod_rewrite module'), true, true, ""); + check_add($ck_funcs, t('Apache mod_rewrite module'), true, true, ""); } } if(! function_exists('curl_init')){ @@ -464,3 +464,6 @@ function load_database($db) { } return $errors; } + + + |