1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Fix an issue with rendering PHID lists containing null in Maniphest

Summary: See IRC. Someone got a `null` in CCPHIDs somehow. Moving to subscriptions should prevent this, but paper over it for now.

Test Plan: Will have @dctrwatson check.

Reviewers: btrahan, dctrwatson

Reviewed By: btrahan

CC: dctrwatson, aran

Differential Revision: https://secure.phabricator.com/D7330
This commit is contained in:
epriestley 2013-10-16 12:46:34 -07:00
parent 3410cbd53e
commit 314673f4f6

View file

@ -319,7 +319,7 @@ abstract class PhabricatorController extends AphrontController {
return implode_selected_handle_links($style_map[$style],
$this->getLoadedHandles(),
$phids);
array_filter($phids));
}
protected function buildApplicationMenu() {