Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception rendering Conpherence search results
ClosedPublic

Authored by aklapper on May 9 2024, 11:24.
Tags
None
Referenced Files
F3082807: D25629.1741072530.diff
Mon, Mar 3, 07:15
F3058691: D25629.1741010401.diff
Sun, Mar 2, 14:00
F2948049: D25629.1738528831.diff
Feb 1 2025, 20:40
F2944562: D25629.1738273087.diff
Jan 29 2025, 21:38
F2938389: D25629.1737994419.diff
Jan 26 2025, 16:13
F2936931: D25629.1737943681.diff
Jan 26 2025, 02:08
F2933525: D25629.1737773735.diff
Jan 24 2025, 02:55
F2933524: D25629.1737773732.diff
Jan 24 2025, 02:55

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.

ERROR 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated at [/var/www/html/phorge/phorge/src/applications/conpherence/query/ConpherenceThreadSearchEngine.php:154]

See also similar rPe65ac7b8800d3397abfced7824a8d316ec573d8f

Closes T15818

Test Plan

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable