@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 one more call to `addExtraQuicksandConfig()`

Summary:
Fixes T9881. This one had Quicksand spelled as "QuickSand" (with capital "S") so it probably didn't get hit by `grep`.

Didn't need to do any special magic with the footer, as far as I can tell.

Test Plan: Loaded project board view, seemed to work OK (no footer, nav works, title works, mobile menu sane).

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9881

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

+14 -10
+14 -10
src/applications/project/controller/PhabricatorProjectBoardViewController.php
··· 282 282 $this->initBehavior( 283 283 'project-boards', 284 284 $behavior_config); 285 - $this->addExtraQuickSandConfig(array('boardConfig' => $behavior_config)); 286 285 287 286 $this->handles = ManiphestTaskListView::loadTaskHandles($viewer, $tasks); 288 287 ··· 386 385 ->addClass('project-board-wrapper'); 387 386 388 387 $nav = $this->buildIconNavView($project); 389 - $nav->appendChild($header_box); 390 - $nav->appendChild($board_box); 391 388 392 - return $this->buildApplicationPage( 393 - $nav, 394 - array( 395 - 'title' => pht('%s Board', $project->getName()), 396 - 'showFooter' => false, 397 - 'pageObjects' => array($project->getPHID()), 398 - )); 389 + return $this->newPage() 390 + ->setTitle(pht('%s Board', $project->getName())) 391 + ->setPageObjectPHIDs(array($project->getPHID())) 392 + ->setShowFooter(false) 393 + ->setNavigation($nav) 394 + ->addQuicksandConfig( 395 + array( 396 + 'boardConfig' => $behavior_config, 397 + )) 398 + ->appendChild( 399 + array( 400 + $header_box, 401 + $board_box, 402 + )); 399 403 } 400 404 401 405 private function buildSortMenu(