Page MenuHomePhorge

Fix PHP 8.1 "explode(null)" exception which blocks rendering "Provide Multi-Factor Credentials" page
ClosedPublic

Authored by aklapper on May 13 2023, 13:48.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 17, 06:17
Unknown Object (File)
Sun, Apr 7, 08:03
Unknown Object (File)
Sat, Apr 6, 01:29
Unknown Object (File)
Wed, Apr 3, 02:29
Unknown Object (File)
Mon, Apr 1, 01:42
Unknown Object (File)
Mon, Apr 1, 01:42
Unknown Object (File)
Mon, Apr 1, 01:42
Unknown Object (File)
Mon, Apr 1, 01:42

Details

Summary

Passing null to the $string in explode(string $separator, string $string, int $limit) is deprecated since PHP 8.1.
Thus do not explode but create an empty array if the input is null.

Closes T15397

Test Plan

Applied this change and afterwards the "Provide Multi-Factor Credentials" page at /auth/finish/ showing the "App Code" field correctly rendered in the web browser.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Thanks - small tip here

src/applications/auth/storage/PhabricatorAuthChallenge.php
59

Also here probably the minimal change is just the above one

Thanks again for this patch

I talked with the kind user aklapper about the proposed minimal change and, hoping to be useful, I will amend that small thing

I tested this locally and this works

This revision is now accepted and ready to land.May 20 2023, 20:27

amend a small thing we discussed in live

valerio.bozzolan edited the summary of this revision. (Show Details)