[STDERR] PHP Strict Standards: Non-static method utf_normalizer::recompose() should not be called statically in includes/utf/utf_normalizer.php on line 145\n
replace line:
$str = utf_normalizer::recompose($str, $pos, $len, $GLOBALS['utf_nfc_qc'], $GLOBALS['utf_canonical_decomp']);
by:
$utf_normalizer = new utf_normalizer();
$str = $utf_normalizer->recompose($str, $pos, $len, $GLOBALS['utf_nfc_qc'], $GLOBALS['utf_canonical_decomp']);
---------------
PHP Strict Standards: Non-static method utf_normalizer::recompose() should not be called statically in includes/utf/utf_normalizer.php on line 177\n
replace:
$str = utf_normalizer::recompose($str, $pos, $len, $GLOBALS['utf_nfkc_qc'], $GLOBALS['utf_compatibility_decomp']);
by:
$utf_normalizer = new utf_normalizer();
$str = $utf_normalizer->recompose($str, $pos, $len, $GLOBALS['utf_nfkc_qc'], $GLOBALS['utf_compatibility_decomp']);