1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Fix a minor path encoding issue with git branches.

This commit is contained in:
epriestley 2011-04-03 23:42:33 -07:00
parent 736f629a07
commit 71b2f4a567

View file

@ -109,7 +109,7 @@ class DiffusionGitRequest extends DiffusionRequest {
public function getUriPath() {
return '/diffusion/'.$this->getCallsign().'/browse/'.
$this->branch.'/'.$this->path;
$this->getBranchURIComponent($this->branch).$this->path;
}
public function getCommit() {