Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13989491
D15578.id37559.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
D15578.id37559.diff
View Options
diff --git a/src/applications/conpherence/controller/ConpherenceListController.php b/src/applications/conpherence/controller/ConpherenceListController.php
--- a/src/applications/conpherence/controller/ConpherenceListController.php
+++ b/src/applications/conpherence/controller/ConpherenceListController.php
@@ -127,11 +127,9 @@
$layout->setHeader($this->buildHeaderPaneContent(
$conpherence,
$policy_objects));
- $response = $this->buildApplicationPage(
- $layout,
- array(
- 'title' => $title,
- ));
+ $response = $this->newPage()
+ ->setTitle($title)
+ ->appendChild($layout);
break;
}
diff --git a/src/applications/conpherence/controller/ConpherenceViewController.php b/src/applications/conpherence/controller/ConpherenceViewController.php
--- a/src/applications/conpherence/controller/ConpherenceViewController.php
+++ b/src/applications/conpherence/controller/ConpherenceViewController.php
@@ -131,12 +131,10 @@
->setLatestTransactionID($data['latest_transaction_id'])
->setRole('thread');
- return $this->buildApplicationPage(
- $layout,
- array(
- 'title' => $title,
- 'pageObjects' => array($conpherence->getPHID()),
- ));
+ return $this->newPage()
+ ->setTitle($title)
+ ->setPageObjectPHIDs(array($conpherence->getPHID()))
+ ->appendChild($layout);
}
private function renderFormContent() {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Oct 22, 8:53 PM (3 w, 4 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6721494
Default Alt Text
D15578.id37559.diff (1 KB)
Attached To
Mode
D15578: Update Conpherence to newPage
Attached
Detach File
Event Timeline
Log In to Comment