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

Fix public/private profile edit note

Summary: Fixes T8976. Checks state of note before applying to box.

Test Plan: Set policy to login, edit profile.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8976

Differential Revision: https://secure.phabricator.com/D13739
This commit is contained in:
Chad Little 2015-07-27 15:12:03 -07:00
parent 8d53f15115
commit 84049e6d07

View file

@ -84,10 +84,13 @@ final class PhabricatorPeopleProfileEditController
$form_box = id(new PHUIObjectBoxView()) $form_box = id(new PHUIObjectBoxView())
->setHeaderText(pht('Edit Profile')) ->setHeaderText(pht('Edit Profile'))
->setInfoView($note)
->setValidationException($validation_exception) ->setValidationException($validation_exception)
->setForm($form); ->setForm($form);
if ($note) {
$form_box->setInfoView($note);
}
$nav = $this->buildIconNavView($user); $nav = $this->buildIconNavView($user);
$nav->selectFilter('/'); $nav->selectFilter('/');
$nav->appendChild($form_box); $nav->appendChild($form_box);