1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Fix a bad method call in EditEngine

Summary: Ref T9983. This method is spelled wrong.

Test Plan: Hit this case, got a dialog instead of a fatal.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9983

Differential Revision: https://secure.phabricator.com/D14786
This commit is contained in:
epriestley 2015-12-14 16:29:45 -08:00
parent 29e2acd525
commit 39206fcbc6

View file

@ -734,7 +734,7 @@ abstract class PhabricatorEditEngine
}
if ($config->getIsDisabled()) {
return $this->buildFormDisabledResponse($object, $config);
return $this->buildDisabledFormResponse($object, $config);
}
switch ($action) {