P
PaulB
Guest
This is just a small patch for PHP 8.3 compatibility issues that we've encountered so far.
Notably, XF\BbCode\Renderer\Html attempts to increment a bool in a couple places, a
Read more
Continue reading...
Notably, XF\BbCode\Renderer\Html attempts to increment a bool in a couple places, a
stopSmilies
and stopBreakConversion
can be either bools or ints. It's not clear to me why they would ever need to be incremented; as far as I can tell, they're never decremented, and those values are never checked. This is probably a bug. Prior versions of PHP would silently refuse to increment bools...Read more
Continue reading...