1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Fix value reading in custom Text and Remarkup fields in EditEngine

Summary: Ref T10004. I missed these previously, so they didn't work quite right. Restore them to glory.

Test Plan: Edited remarkup and text custom fields on an Owners package.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10004

Differential Revision: https://secure.phabricator.com/D14821
This commit is contained in:
epriestley 2015-12-18 10:45:50 -08:00
parent 5cb0de1efc
commit 46e690b2fd
2 changed files with 8 additions and 0 deletions

View file

@ -103,4 +103,8 @@ final class PhabricatorStandardCustomFieldRemarkup
return false;
}
public function getConduitEditParameterType() {
return new ConduitStringParameterType();
}
}

View file

@ -71,4 +71,8 @@ final class PhabricatorStandardCustomFieldText
return false;
}
public function getConduitEditParameterType() {
return new ConduitStringParameterType();
}
}