@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.

Fix a PHP 8.1 string strictness issue in repositories

Summary: Ref T13588. This is a little too strict, as `$line` may be an integer.

Test Plan: Will deploy

Maniphest Tasks: T13588

Differential Revision: https://secure.phabricator.com/D21775

+1
+1
src/applications/repository/storage/PhabricatorRepository.php
··· 757 757 $commit = ';'.phutil_escape_uri($commit); 758 758 } 759 759 760 + $line = phutil_string_cast($line); 760 761 if (phutil_nonempty_string($line)) { 761 762 $line = '$'.phutil_escape_uri($line); 762 763 }