From 2a69b9100009d69b9998f9f85d79a9b29d213173 Mon Sep 17 00:00:00 2001 From: epriestley Date: Sun, 6 Oct 2013 17:13:51 -0700 Subject: [PATCH] Fix minor issue with data attachment on project creation --- .../project/controller/PhabricatorProjectCreateController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/project/controller/PhabricatorProjectCreateController.php b/src/applications/project/controller/PhabricatorProjectCreateController.php index 423f6bc3d8..137c1ae086 100644 --- a/src/applications/project/controller/PhabricatorProjectCreateController.php +++ b/src/applications/project/controller/PhabricatorProjectCreateController.php @@ -11,6 +11,7 @@ final class PhabricatorProjectCreateController $project = new PhabricatorProject(); $project->setAuthorPHID($user->getPHID()); + $project->attachMemberPHIDs(array()); $profile = new PhabricatorProjectProfile(); $e_name = true;