Fix variable in StandardPageView
Summary: Found this grepping for `contne` Test Plan: render any standard page Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15411
This commit is contained in:
parent
6084b7a201
commit
5a28bff987
|
@ -490,7 +490,7 @@ final class PhabricatorStandardPageView extends PhabricatorBarePageView
|
||||||
$nav->appendFooter($footer);
|
$nav->appendFooter($footer);
|
||||||
$content = phutil_implode_html('', array($nav->render()));
|
$content = phutil_implode_html('', array($nav->render()));
|
||||||
} else {
|
} else {
|
||||||
$contnet = array();
|
$content = array();
|
||||||
|
|
||||||
$crumbs = $this->getCrumbs();
|
$crumbs = $this->getCrumbs();
|
||||||
if ($crumbs) {
|
if ($crumbs) {
|
||||||
|
|
Loading…
Reference in a new issue