@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 extra parameter in newStandardEditField() call

Summary: See D14617. This could probably go either way but we don't currently need `$engine` in `newStandardEditField()`, so just get rid of it.

Test Plan: Edited a task with standard custom fields defined.

Reviewers: vrana, chad

Reviewed By: vrana

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

+1 -1
+1 -1
src/infrastructure/customfield/field/PhabricatorCustomField.php
··· 1095 1095 1096 1096 1097 1097 public function getEditEngineFields(PhabricatorEditEngine $engine) { 1098 - $field = $this->newStandardEditField($engine); 1098 + $field = $this->newStandardEditField(); 1099 1099 1100 1100 return array( 1101 1101 $field,