@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 an issue where the first click on the profile menu collapse link could be swallowed

Summary: `alterClass()` is strict about true/false but we set 0/1 elsewhere.

Test Plan: Collapsed/expanded menu, reloaded expanded menu, clicked collapse, got immediate collapse.

Reviewers: chad

Reviewed By: chad

Differential Revision: https://secure.phabricator.com/D15087

+1 -1
+1 -1
src/applications/search/engine/PhabricatorProfilePanelEngine.php
··· 382 382 array( 383 383 'menuID' => $nav->getMainID(), 384 384 'collapseID' => $collapse_id, 385 - 'isCollapsed' => $is_collapsed, 385 + 'isCollapsed' => (bool)$is_collapsed, 386 386 'settingsURI' => $settings_uri, 387 387 )); 388 388