Fix empty property list in Phriction
Summary: Fixes T3944 Test Plan: Will test on secure Reviewers: epriestley, staticshock CC: Korvin, epriestley, aran Maniphest Tasks: T3944 Differential Revision: https://secure.phabricator.com/D7291
This commit is contained in:
@@ -162,8 +162,11 @@ final class PhrictionDocumentController
|
||||
$header = id(new PHUIHeaderView())
|
||||
->setHeader($page_title);
|
||||
|
||||
$prop_list = new PHUIPropertyGroupView();
|
||||
$prop_list->addPropertyList($properties);
|
||||
$prop_list = null;
|
||||
if ($properties) {
|
||||
$prop_list = new PHUIPropertyGroupView();
|
||||
$prop_list->addPropertyList($properties);
|
||||
}
|
||||
|
||||
$page_content = id(new PHUIDocumentView())
|
||||
->setOffset(true)
|
||||
|
||||
Reference in New Issue
Block a user