]> git.mxchange.org Git - friendica.git/commitdiff
mb_string is now required.
authorFriendika <info@friendika.com>
Sun, 5 Jun 2011 05:48:43 +0000 (22:48 -0700)
committerFriendika <info@friendika.com>
Sun, 5 Jun 2011 05:48:43 +0000 (22:48 -0700)
mod/install.php

index 35c2b3daee736355bacbf6b712a715e1be1f5adc..b9deb6114f57bf7eca0fe1e0a62ca815f9817a87 100644 (file)
@@ -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);
 }