Top Hosting Forum

WebHosting Reviews Forum


PHP Strict Non-static method utf_normalizer::recompose()

PHPBB forum script Discussion. PHPBB Questions, Troubleshooting, Errors, Mods and so on..
Hosting Forum Description
PHPBB forum script Discussion. PHPBB Questions, Troubleshooting, Errors, Mods and so on..

PHP Strict Non-static method utf_normalizer::recompose()

Postby hostingforum » Sat Aug 03, 2024 1:12 pm

[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']);



hostingforum
Site Admin
 
Posts: 671
Joined: Fri May 20, 2011 7:58 pm

Return to PHPBB

Who is online

Users browsing this forum: No registered users and 0 guests

.