@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.

Show search/login on tablet and mobile.

Summary: We should always have some sort of menu on mobile for logging in.

Test Plan: Test mobile, tablet, and desktop breakpoints. Gate seearch icon by public_policy.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T4731

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

+5
+5
src/view/page/menu/PhabricatorMainMenuView.php
··· 41 41 $menus = array_merge($menus, $dropdowns); 42 42 $app_button = $this->renderApplicationMenuButton($header_id); 43 43 $search_button = $this->renderSearchMenuButton($header_id); 44 + } else { 45 + $app_button = $this->renderApplicationMenuButton($header_id); 46 + if (PhabricatorEnv::getEnvConfig('policy.allow-public')) { 47 + $search_button = $this->renderSearchMenuButton($header_id); 48 + } 44 49 } 45 50 46 51 $search_menu = $this->renderPhabricatorSearchMenu();