summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-05-09 11:30:59 +0200
committerAndrey Andreev <narf@devilix.net>2014-05-09 11:30:59 +0200
commit1ffa223bd3d201d00170b3376bdc099ea8f12957 (patch)
treee3f2fb7826e5e00cd4891d14aa9053be086074f0 /tests
parent263e8fe0978e606137176135f0737c1dee319f0e (diff)
Suppress PHP 5.6 E_DEPRECATED warnings for mbstring.internal_encoding as well
Diffstat (limited to 'tests')
-rw-r--r--tests/Bootstrap.php2
1 files changed, 1 insertions, 1 deletions
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