diff options
author | Friendika <info@friendika.com> | 2011-06-04 22:48:43 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-04 22:48:43 -0700 |
commit | 6f34f89ddbbbac5747140991ebf750ddee4d31bf (patch) | |
tree | 2b3c69af8f84120c0682f5cbe007ddbc09577906 /mod/install.php | |
parent | d53c1bb48a9fb9105387ea9e77395a66f471a4f6 (diff) | |
download | volse-hubzilla-6f34f89ddbbbac5747140991ebf750ddee4d31bf.tar.gz volse-hubzilla-6f34f89ddbbbac5747140991ebf750ddee4d31bf.tar.bz2 volse-hubzilla-6f34f89ddbbbac5747140991ebf750ddee4d31bf.zip |
mb_string is now required.
Diffstat (limited to 'mod/install.php')
-rw-r--r-- | mod/install.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/install.php b/mod/install.php index 35c2b3dae..b9deb6114 100644 --- a/mod/install.php +++ b/mod/install.php @@ -194,7 +194,10 @@ function check_funcs() { if(! function_exists('openssl_public_encrypt')) notice( t('Error: openssl PHP module required but not installed.') . EOL); if(! function_exists('mysqli_connect')) - notice( t('Error: mysqli PHP module required but not installed.') . EOL); + notice( t('Error: mysqli PHP module required but not installed.') . EOL); + if(! function_exists('mb_strlen')) + notice( t('Error: mb_string PHP module required but not installed.') . EOL); + if((x($_SESSION,'sysmsg')) && strlen($_SESSION['sysmsg'])) notice( t('Please see the file "INSTALL.txt".') . EOL); } |