GetSimpleCMS-CE / GetSimpleCMS-3.3.19

GetSimpleCMS CE (php7.4-8.2 compatibility, Responsive admin & base template, Massive Admin included)
MIT License
9 stars 1 forks source link

admin/inc/template_functions.php line 708: utf8_encode is deprecated in PHP 8.2 #3

Closed redflitzi closed 11 months ago

redflitzi commented 11 months ago

In line 708 of template_functions.php:

$dash .= utf8_encode("\xA0\xA0"); // outer level

as this is deprecated now, I would suggest replacing it with

$dash .= "\u{00A0}\u{00A0}"; // outer level

That syntax will work since PHP 7.0.

risingisland commented 11 months ago

Thanks for this find. Its now been added.