@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 "Reviewers" validation issue with empty reviewers

Summary: Fixes T11021.

Test Plan: Created a revision without reviewers.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11021

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

+4
+4
src/applications/differential/customfield/DifferentialReviewersField.php
··· 237 237 } 238 238 239 239 public function validateCommitMessageValue($value) { 240 + if (!$value) { 241 + return; 242 + } 243 + 240 244 $author_phid = $this->getObject()->getAuthorPHID(); 241 245 242 246 $config_self_accept_key = 'differential.allow-self-accept';