diff --git a/includes/unicode.inc b/includes/unicode.inc
index fd497cc..f9684a8 100644
--- a/includes/unicode.inc
+++ b/includes/unicode.inc
@@ -116,11 +116,15 @@ function _unicode_check() {
if (ini_get('mbstring.encoding_translation') != 0) {
return array(UNICODE_ERROR, $t('Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini mbstring.encoding_translation setting. Please refer to the PHP mbstring documentation for more information.', array('@url' => 'http://www.php.net/mbstring')));
}
- if (ini_get('mbstring.http_input') != 'pass') {
- return array(UNICODE_ERROR, $t('Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini mbstring.http_input setting. Please refer to the PHP mbstring documentation for more information.', array('@url' => 'http://www.php.net/mbstring')));
- }
- if (ini_get('mbstring.http_output') != 'pass') {
- return array(UNICODE_ERROR, $t('Multibyte string output conversion in PHP is active and must be disabled. Check the php.ini mbstring.http_output setting. Please refer to the PHP mbstring documentation for more information.', array('@url' => 'http://www.php.net/mbstring')));
+ // mbstring.http_input and mbstring.http_output are deprecated and empty by
+ // default in PHP 5.6.
+ if (version_compare(PHP_VERSION, '5.6.0') == -1) {
+ if (ini_get('mbstring.http_input') != 'pass') {
+ return array(UNICODE_ERROR, $t('Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini mbstring.http_input setting. Please refer to the PHP mbstring documentation for more information.', array('@url' => 'http://www.php.net/mbstring')));
+ }
+ if (ini_get('mbstring.http_output') != 'pass') {
+ return array(UNICODE_ERROR, $t('Multibyte string output conversion in PHP is active and must be disabled. Check the php.ini mbstring.http_output setting. Please refer to the PHP mbstring documentation for more information.', array('@url' => 'http://www.php.net/mbstring')));
+ }
}
// Set appropriate configuration