[stable9] Properly check for mbstring extension
mb_detect_encoding is in the fallback we ship in the polyfill library, mb_strcut is not. Thus this lead to a false positive and ownCloud would just break.
This commit is contained in:
parent
abd8475336
commit
2516d07fdd
|
@ -731,7 +731,7 @@ class OC_Util {
|
|||
),
|
||||
'functions' => [
|
||||
'xml_parser_create' => 'libxml',
|
||||
'mb_detect_encoding' => 'mb multibyte',
|
||||
'mb_strcut' => 'mb multibyte',
|
||||
'ctype_digit' => 'ctype',
|
||||
'json_encode' => 'JSON',
|
||||
'gd_info' => 'GD',
|
||||
|
|
Loading…
Reference in New Issue