Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception creating a Portal
ClosedPublic

Authored by aklapper on Jun 5 2024, 11:44.
Tags
None
Referenced Files
F3340057: D25681.1743629871.diff
Tue, Apr 1, 21:37
F3335419: D25681.1743562969.diff
Tue, Apr 1, 03:02
F3332890: D25681.1743527663.diff
Mon, Mar 31, 17:14
F3331991: D25681.1743516755.diff
Mon, Mar 31, 14:12
F3331194: D25681.1743502723.diff
Mon, Mar 31, 10:18
F3329939: D25681.1743482113.diff
Mon, Mar 31, 04:35
F3327711: D25681.1743444375.diff
Sun, Mar 30, 18:06
F3319178: D25681.1743301413.diff
Sat, Mar 29, 02:23

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/dashboard/menuitem/PhabricatorDashboardPortalMenuItem.php:34]

Closes T15847

Test Plan

Go to /portal/edit/form/default/, set a name and click Create Portal.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable