From 52f724e6cf49195961549c67ba87e4077d367c79 Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Tue, 17 Feb 2015 15:03:57 -0800 Subject: [PATCH] Project - don't create the empty tag on create anymore Summary: Fixes T7284. We were initialized the project name to the empty string, which was making things work like a rename, including automagically adding the old slug. Test Plan: made a project and no more "empty" tag being made. also don't have that bad transaction story anymore. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7284 Differential Revision: https://secure.phabricator.com/D11794 --- src/applications/project/storage/PhabricatorProject.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/applications/project/storage/PhabricatorProject.php b/src/applications/project/storage/PhabricatorProject.php index 6f02307404..df013e1616 100644 --- a/src/applications/project/storage/PhabricatorProject.php +++ b/src/applications/project/storage/PhabricatorProject.php @@ -50,7 +50,6 @@ final class PhabricatorProject extends PhabricatorProjectDAO ProjectDefaultJoinCapability::CAPABILITY); return id(new PhabricatorProject()) - ->setName('') ->setAuthorPHID($actor->getPHID()) ->setIcon(self::DEFAULT_ICON) ->setColor(self::DEFAULT_COLOR)