mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-30 01:10:58 +01:00
Fix InvalidArgumentException PHUIFormPageView::pageErrors
Summary: Argument 1 passed to PHUIObjectBoxView::setFormErrors() must be of the type array, not null. See: <https://github.com/facebook/phabricator/pull/482> Reviewed by: epriestley
This commit is contained in:
parent
10ea1dd749
commit
03aecd63de
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ class PHUIFormPageView extends AphrontView {
|
|||
private $isValid;
|
||||
private $validateFormPageCallback;
|
||||
private $adjustFormPageCallback;
|
||||
private $pageErrors;
|
||||
private $pageErrors = array();
|
||||
private $pageName;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue