Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exceptions which block rendering the Diffusion page
ClosedPublic

Authored by aklapper on Apr 30 2023, 08:08.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 12:42
Unknown Object (File)
Thu, Apr 11, 04:13
Unknown Object (File)
Wed, Apr 10, 21:21
Unknown Object (File)
Sun, Apr 7, 10:42
Unknown Object (File)
Tue, Apr 2, 15:11
Unknown Object (File)
Sun, Mar 31, 20:59
Unknown Object (File)
Sun, Mar 31, 12:33
Unknown Object (File)
Sun, Mar 31, 12:33

Details

Summary

strlen() was used in Phabricator to check if a generic value is a non-empty string.
This behavior is deprecated since PHP 8.1. Phorge adopts phutil_nonempty_string() as a replacement.

Note: this may highlight other absurd input values that might be worth correcting
instead of just ignoring. If phutil_nonempty_string() throws an exception in your
instance, report it to Phorge to evaluate and fix that specific corner case.

Closes T15300

Test Plan

Applied these three changes (on top of D25144, D25145, D25146, D25147) and /diffusion/ finally rendered in web browser.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Apr 30 2023, 08:10