@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+4 -1
+4 -1
src/applications/people/controller/PhabricatorPeopleProfileEditController.php
··· 84 84 85 85 $form_box = id(new PHUIObjectBoxView()) 86 86 ->setHeaderText(pht('Edit Profile')) 87 - ->setInfoView($note) 88 87 ->setValidationException($validation_exception) 89 88 ->setForm($form); 89 + 90 + if ($note) { 91 + $form_box->setInfoView($note); 92 + } 90 93 91 94 $nav = $this->buildIconNavView($user); 92 95 $nav->selectFilter('/');