From 1ffa223bd3d201d00170b3376bdc099ea8f12957 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Fri, 9 May 2014 12:30:59 +0300 Subject: Suppress PHP 5.6 E_DEPRECATED warnings for mbstring.internal_encoding as well --- tests/Bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/Bootstrap.php') diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php index 195fc0dca..cc84abf28 100644 --- a/tests/Bootstrap.php +++ b/tests/Bootstrap.php @@ -46,7 +46,7 @@ ini_set('default_charset', 'UTF-8'); if (extension_loaded('mbstring')) { defined('MB_ENABLED') OR define('MB_ENABLED', TRUE); - ini_set('mbstring.internal_encoding', 'UTF-8'); + @ini_set('mbstring.internal_encoding', 'UTF-8'); mb_substitute_character('none'); } else -- cgit v1.2.3-24-g4f1b