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

Remove 'isPartial' parameter with no effect

Summary: Fixes T12536. Nothing reads this parameter; `PhabricatorFile::newChunkedFile` sets the `isPartial` flag automatically.

Test Plan: Grepped for `isPartial`.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12536

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

-4
-4
src/applications/files/uploadsource/PhabricatorFileUploadSource.php
··· 137 137 138 138 $parameters = $this->getNewFileParameters(); 139 139 140 - $parameters = array( 141 - 'isPartial' => true, 142 - ) + $parameters; 143 - 144 140 $data_length = $this->getDataLength(); 145 141 if ($data_length !== null) { 146 142 $length = $data_length;