1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

Fix an issue with generating browser URIs in an SVN repository

Summary: Fixes T11866. This got converted wrong when doing the `/source/` stuff.

Test Plan: Browsed the root directory of a Subversion repository in Diffusion.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11866

Differential Revision: https://secure.phabricator.com/D16860
This commit is contained in:
epriestley 2016-11-15 06:50:05 -08:00
parent d5a72ca98e
commit e6c82c0994

View file

@ -760,7 +760,7 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
if (strlen($path)) {
$uri = $this->getPathURI("/repository/{$path}");
} else {
$uri = $this->getPathURI();
$uri = $this->getPathURI('/');
}
break;
case 'external':