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:
parent
d5a72ca98e
commit
e6c82c0994
1 changed files with 1 additions and 1 deletions
|
@ -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':
|
||||
|
|
Loading…
Reference in a new issue