Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception removing custom alt text from image file
ClosedPublic

Authored by aklapper on Nov 28 2023, 12:47.
Tags
None
Referenced Files
F2990055: D25481.1740168369.diff
Thu, Feb 20, 20:06
F2990054: D25481.1740168369.diff
Thu, Feb 20, 20:06
F2989953: D25481.1740167829.diff
Thu, Feb 20, 19:57
F2982351: D25481.1739954495.diff
Tue, Feb 18, 08:41
F2947533: D25481.1738478531.diff
Sat, Feb 1, 06:42
F2945405: D25481.1738315129.diff
Thu, Jan 30, 09:18
F2942558: D25481.1738119722.diff
Tue, Jan 28, 03:02
F2938314: D25481.1737994151.diff
Sun, Jan 26, 16:09

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/files/xaction/PhabricatorFileAltTextTransaction.php:59]

Closes T15678

Test Plan

Add and remove alt text on an image file; then go to /feed/query/all/

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable