mb_string is now required.

This commit is contained in:
Friendika 2011-06-04 22:48:43 -07:00
parent d53c1bb48a
commit 6f34f89ddb
1 changed files with 4 additions and 1 deletions

View File

@ -195,6 +195,9 @@ function check_funcs() {
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);
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);
}