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

Allow null identities to be attached to commit objects

Summary: I landed D19491 a little aggressively, so allow this field to be null until after the migration goes out.

Test Plan: Loaded commits without identity objects; did not get any errors.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+3 -2
+3 -2
src/applications/repository/storage/PhabricatorRepositoryCommit.php
··· 195 195 } 196 196 197 197 public function attachIdentities( 198 - PhabricatorRepositoryIdentity $author, 199 - $committer = null) { 198 + PhabricatorRepositoryIdentity $author = null, 199 + PhabricatorRepositoryIdentity $committer = null) { 200 + 200 201 $this->authorIdentity = $author; 201 202 $this->committerIdentity = $committer; 202 203 }