1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-24 22:40:55 +01:00

Update chatlog to newPage()

Summary: Just clearing these all out.

Test Plan: Visit channel list and log page.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D15577
This commit is contained in:
Chad Little 2016-04-02 12:32:58 -07:00
parent a8c9a5597d
commit b5f0b58987
2 changed files with 10 additions and 16 deletions

View file

@ -32,13 +32,10 @@ final class PhabricatorChatLogChannelListController
->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);
}
}

View file

@ -248,14 +248,11 @@ final class PhabricatorChatLogChannelLogController
$form,
'#');
return $this->buildApplicationPage(
array(
$crumbs,
$box,
),
array(
'title' => pht('Channel Log'),
));
return $this->newPage()
->setTitle(pht('Channel Log'))
->setCrumbs($crumbs)
->appendChild($box);
}
/**