diff --git a/src/applications/repository/storage/PhabricatorRepository.php b/src/applications/repository/storage/PhabricatorRepository.php --- a/src/applications/repository/storage/PhabricatorRepository.php +++ b/src/applications/repository/storage/PhabricatorRepository.php @@ -364,7 +364,7 @@ if (!strlen($name)) { $name = $this->getName(); $name = phutil_utf8_strtolower($name); - $name = preg_replace('@[/ -:<>]+@', '-', $name); + $name = preg_replace('@[ -/:->]+@', '-', $name); $name = trim($name, '-'); if (!strlen($name)) { $name = $this->getCallsign();