Page MenuHomePhorge

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

Authored by aklapper on Thu, May 9, 11:24.
Tags
None
Referenced Files
Unknown Object (File)
Thu, May 30, 22:17
Unknown Object (File)
Wed, May 22, 21:18
Unknown Object (File)
Tue, May 21, 00:57
Unknown Object (File)
Mon, May 20, 22:47
Unknown Object (File)
Mon, May 20, 00:54
Unknown Object (File)
Sun, May 19, 23:33
Unknown Object (File)
Sun, May 19, 14:27
Unknown Object (File)
Sun, May 19, 02:11

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