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
Unknown Object (File)
Wed, Jul 24, 03:51
Unknown Object (File)
Wed, Jul 24, 03:51
Unknown Object (File)
Wed, Jul 24, 01:58
Unknown Object (File)
Sat, Jul 20, 07:07
Unknown Object (File)
Sun, Jul 14, 17:30
Unknown Object (File)
Fri, Jul 12, 14:19
Unknown Object (File)
Thu, Jul 11, 05:21
Unknown Object (File)
Wed, Jul 10, 04:19

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