mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 07:12:41 +01:00
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
This commit is contained in:
parent
01f277cef2
commit
b11138a16b
1 changed files with 1 additions and 1 deletions
|
@ -1095,7 +1095,7 @@ abstract class PhabricatorCustomField extends Phobject {
|
|||
|
||||
|
||||
public function getEditEngineFields(PhabricatorEditEngine $engine) {
|
||||
$field = $this->newStandardEditField($engine);
|
||||
$field = $this->newStandardEditField();
|
||||
|
||||
return array(
|
||||
$field,
|
||||
|
|
Loading…
Reference in a new issue