@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Don't show "clone-name" as "Short Name"

Summary: See D16851 - there's now a difference in their meaning, so don't unite them in the UI.

Test Plan: Load manage page of repos

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D16858

authored by

Aviv Eyal and committed by
avivey
d5a72ca9 7165e4da

+1 -2
+1 -2
src/applications/diffusion/management/DiffusionRepositoryBasicsManagementPanel.php
··· 168 168 169 169 $short_name = $repository->getRepositorySlug(); 170 170 if ($short_name === null) { 171 - $short_name = $repository->getCloneName(); 172 - $short_name = phutil_tag('em', array(), $short_name); 171 + $short_name = phutil_tag('em', array(), pht('No Short Name')); 173 172 } 174 173 $view->addProperty(pht('Short Name'), $short_name); 175 174