mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
Fix double-bordered breadcrumbs in Phame blogs
Summary: Ref T13661. The Phame blog main page has a double breadcrumb border in non-live mode. Test Plan: Viewed a blog page in internal and live modes, saw single border in both cases (previously: double border for internal mode). Maniphest Tasks: T13661 Differential Revision: https://secure.phabricator.com/D21750
This commit is contained in:
parent
6c2c80a373
commit
5ce7f803f9
1 changed files with 2 additions and 1 deletions
|
@ -103,7 +103,8 @@ final class PhameBlogViewController extends PhameLiveController {
|
|||
->setDescription($description)
|
||||
->setImage($blog->getProfileImageURI());
|
||||
|
||||
$crumbs = $this->buildApplicationCrumbs();
|
||||
$crumbs = $this->buildApplicationCrumbs()
|
||||
->setBorder(false);
|
||||
|
||||
$page = $this->newPage()
|
||||
->setTitle($blog->getName())
|
||||
|
|
Loading…
Reference in a new issue