1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-30 01:10:58 +01:00

Use full repository name instead of callsing in crumbs

Summary: ref D8087

Test Plan: View a repository, browse around it

Reviewers: epriestley

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Differential Revision: https://secure.phabricator.com/D8137
This commit is contained in:
Chad Little 2014-02-03 16:00:27 -08:00
parent caa15b1732
commit 30b9503b85

View file

@ -74,7 +74,7 @@ abstract class DiffusionController extends PhabricatorController {
}
$callsign = $repository->getCallsign();
$repository_name = 'r'.$callsign;
$repository_name = $repository->getName();
if (!$spec['commit'] && !$spec['tags'] && !$spec['branches']) {
$branch_name = $drequest->getBranch();