ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,683
- Points
- 823
Reputation:
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...