Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception in PhabricatorAuthStartController.php
ClosedPublic

Authored by aklapper on May 15 2024, 12:33.
Tags
None
Referenced Files
F3212713: D25639.1741468257.diff
Fri, Mar 7, 21:10
F3212685: D25639.1741464580.diff
Fri, Mar 7, 20:09
F3010048: D25639.1740626532.diff
Wed, Feb 26, 03:22
F3010047: D25639.1740626532.diff
Wed, Feb 26, 03:22
F3010028: D25639.1740626352.diff
Wed, Feb 26, 03:19
F3010025: D25639.1740626040.diff
Wed, Feb 26, 03:14
F2945019: D25639.1738280939.diff
Jan 29 2025, 23:48
F2943011: D25639.1738155047.diff
Jan 28 2025, 12:50

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/auth/controller/PhabricatorAuthStartController.php:34]

Closes T15832

Test Plan

Run arc unit locally, probably also don't be logged in.

Diff Detail

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