@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update DiffusionDocumentRenderingEngine to cope with null code coverage in PHP 8.1

Summary:
Update DiffusionDocumentRenderingEngine to cope with null code coverage in PHP 8.1

Fixes T15523

Test Plan: https://my.phorge.site/source/myrepo/browse/master/myfile

Reviewers: O1 Blessed Committers, avivey

Reviewed By: O1 Blessed Committers, avivey

Subscribers: speck, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15523

Differential Revision: https://we.phorge.it/D25330

+1 -1
+1 -1
src/applications/diffusion/document/DiffusionDocumentRenderingEngine.php
··· 87 87 $ref->setSymbolMetadata($this->getSymbolMetadata()); 88 88 89 89 $coverage = $drequest->loadCoverage(); 90 - if (strlen($coverage)) { 90 + if (phutil_nonempty_string($coverage)) { 91 91 $ref->addCoverage($coverage); 92 92 } 93 93 }