Doesn't work if there are apostrophes in the file name.
I made hotfix in dl.php file line 116:
$archiveName = basename($archiveName);
$archiveName = encodePath($archiveName);
$archiveName = str_replace("%26apos%3B","%27",$archiveName);
And in svnlook.php file line 633:
function svnCommandString($command, $path, $rev, $peg) {
global $config;
$s=encodePath($this->getSvnPath($path));
$s=str_replace('%26apos%3B','%27',$s);
return $config->getSvnCommand().$this->repConfig->svnCredentials().' '.$command.' '.($rev ? '-r '.$rev.' ' : '').quote($s.'@'.($peg ? $peg : ''));
}
But this is a very bad decision.
Doesn't work if there are apostrophes in the file name.
I made hotfix in dl.php file line 116:
And in svnlook.php file line 633:
But this is a very bad decision.