1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 14:00:56 +01:00

escape svn repository file paths.

This commit is contained in:
taichi 2013-02-13 19:30:11 +09:00
parent 5a9e834658
commit 21ddd3a73f
2 changed files with 2 additions and 2 deletions

View file

@ -140,7 +140,7 @@ final class DiffusionSvnDiffQuery extends DiffusionDiffQuery {
return $repository->getRemoteCommandFuture(
'cat %s%s@%d',
$repository->getRemoteURI(),
$ref,
phutil_escape_uri($ref),
$rev);
}

View file

@ -16,7 +16,7 @@ final class DiffusionSvnFileContentQuery extends DiffusionFileContentQuery {
'%C %s%s@%s',
$this->getNeedsBlame() ? 'blame --force' : 'cat',
$remote_uri,
$path,
phutil_escape_uri($path),
$commit);
} catch (CommandException $ex) {
$stderr = $ex->getStdErr();