mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-25 06:50: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:
parent
a8c9a5597d
commit
b5f0b58987
2 changed files with 10 additions and 16 deletions
|
@ -32,13 +32,10 @@ final class PhabricatorChatLogChannelListController
|
||||||
->setHeaderText('Channel List')
|
->setHeaderText('Channel List')
|
||||||
->setObjectList($list);
|
->setObjectList($list);
|
||||||
|
|
||||||
return $this->buildApplicationPage(
|
return $this->newPage()
|
||||||
array(
|
->setTitle(pht('Channel List'))
|
||||||
$crumbs,
|
->setCrumbs($crumbs)
|
||||||
$box,
|
->appendChild($box);
|
||||||
),
|
|
||||||
array(
|
|
||||||
'title' => pht('Channel List'),
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -248,14 +248,11 @@ final class PhabricatorChatLogChannelLogController
|
||||||
$form,
|
$form,
|
||||||
'#');
|
'#');
|
||||||
|
|
||||||
return $this->buildApplicationPage(
|
return $this->newPage()
|
||||||
array(
|
->setTitle(pht('Channel Log'))
|
||||||
$crumbs,
|
->setCrumbs($crumbs)
|
||||||
$box,
|
->appendChild($box);
|
||||||
),
|
|
||||||
array(
|
|
||||||
'title' => pht('Channel Log'),
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue