Page MenuHomePhabricator

D15577.id37550.diff
No OneTemporary

D15577.id37550.diff

diff --git a/src/applications/chatlog/controller/PhabricatorChatLogChannelListController.php b/src/applications/chatlog/controller/PhabricatorChatLogChannelListController.php
--- a/src/applications/chatlog/controller/PhabricatorChatLogChannelListController.php
+++ b/src/applications/chatlog/controller/PhabricatorChatLogChannelListController.php
@@ -32,13 +32,10 @@
->setHeaderText('Channel List')
->setObjectList($list);
- return $this->buildApplicationPage(
- array(
- $crumbs,
- $box,
- ),
- array(
- 'title' => pht('Channel List'),
- ));
+ return $this->newPage()
+ ->setTitle(pht('Channel List'))
+ ->setCrumbs($crumbs)
+ ->appendChild($box);
+
}
}
diff --git a/src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php b/src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php
--- a/src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php
+++ b/src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php
@@ -248,14 +248,11 @@
$form,
'#');
- return $this->buildApplicationPage(
- array(
- $crumbs,
- $box,
- ),
- array(
- 'title' => pht('Channel Log'),
- ));
+ return $this->newPage()
+ ->setTitle(pht('Channel Log'))
+ ->setCrumbs($crumbs)
+ ->appendChild($box);
+
}
/**

File Metadata

Mime Type
text/plain
Expires
Wed, Oct 23, 1:30 AM (4 w, 1 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6732562
Default Alt Text
D15577.id37550.diff (1 KB)

Event Timeline