Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13969825
D14626.id35387.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D14626.id35387.diff
View Options
diff --git a/src/applications/project/controller/PhabricatorProjectBoardViewController.php b/src/applications/project/controller/PhabricatorProjectBoardViewController.php
--- a/src/applications/project/controller/PhabricatorProjectBoardViewController.php
+++ b/src/applications/project/controller/PhabricatorProjectBoardViewController.php
@@ -282,7 +282,6 @@
$this->initBehavior(
'project-boards',
$behavior_config);
- $this->addExtraQuickSandConfig(array('boardConfig' => $behavior_config));
$this->handles = ManiphestTaskListView::loadTaskHandles($viewer, $tasks);
@@ -386,16 +385,21 @@
->addClass('project-board-wrapper');
$nav = $this->buildIconNavView($project);
- $nav->appendChild($header_box);
- $nav->appendChild($board_box);
- return $this->buildApplicationPage(
- $nav,
- array(
- 'title' => pht('%s Board', $project->getName()),
- 'showFooter' => false,
- 'pageObjects' => array($project->getPHID()),
- ));
+ return $this->newPage()
+ ->setTitle(pht('%s Board', $project->getName()))
+ ->setPageObjectPHIDs(array($project->getPHID()))
+ ->setShowFooter(false)
+ ->setNavigation($nav)
+ ->addQuicksandConfig(
+ array(
+ 'boardConfig' => $behavior_config,
+ ))
+ ->appendChild(
+ array(
+ $header_box,
+ $board_box,
+ ));
}
private function buildSortMenu(
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Oct 18 2024, 4:02 AM (4 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6719762
Default Alt Text
D14626.id35387.diff (1 KB)
Attached To
Mode
D14626: Fix one more call to `addExtraQuicksandConfig()`
Attached
Detach File
Event Timeline
Log In to Comment