Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exceptions editing existing Dashboard query panel with no query defined
Needs ReviewPublic

Authored by aklapper on Thu, Apr 18, 17:50.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Apr 28, 03:40
Unknown Object (File)
Sun, Apr 28, 01:54
Unknown Object (File)
Sat, Apr 27, 07:47
Unknown Object (File)
Fri, Apr 26, 20:13
Unknown Object (File)
Wed, Apr 24, 12:22
Unknown Object (File)
Mon, Apr 22, 09:09
Unknown Object (File)
Mon, Apr 22, 09:01
Unknown Object (File)
Mon, Apr 22, 08:49

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/editfield/PhabricatorDashboardQueryPanelQueryEditField.php:41]
ERROR 8192: strlen(): Passing null to parameter #1 ($string) of type string is deprecated at [/var/www/html/phorge/phorge/src/applications/dashboard/editfield/PhabricatorDashboardQueryPanelQueryEditField.php:59]

Closes T15791

Test Plan

Successfully create a Dashboard query panel searching for "Diffusion Raw Commits" (which has no Query defined per T15790) and try to edit it afterwards under PHP 8.1 or later.

Diff Detail

Repository
rP Phorge
Branch
T15791 (branched from master)
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 1188
Build 1188: arc lint + arc unit