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
F3298146: D25681.1742997676.diff
Tue, Mar 25, 14:01
F3293150: D25681.1742908328.diff
Mon, Mar 24, 13:12
F3290631: D25681.1742869698.diff
Mon, Mar 24, 02:28
F3252662: D25681.1742397773.diff
Tue, Mar 18, 15:22
F3251667: D25681.1742365250.diff
Tue, Mar 18, 06:20
F3249554: D25681.1742286570.diff
Mon, Mar 17, 08:29
F3225490: D25681.1742121157.diff
Sat, Mar 15, 10:32
F3216645: D25681.1741707721.diff
Mon, Mar 10, 15:42

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