Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14048283
D15577.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
D15577.diff
View Options
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
Details
Attached
Mime Type
text/plain
Expires
Fri, Nov 15, 7:20 AM (4 d, 18 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6732562
Default Alt Text
D15577.diff (1 KB)
Attached To
Mode
D15577: Update chatlog to newPage()
Attached
Detach File
Event Timeline
Log In to Comment