| CODENOTIFIER | HelpYou are not signed inSign in |
Project: TortoiseSVN
Revision: 13813
Author: steveking
Date: 03 Sep 2008 12:16:08
Changes:Escape the urls passed to the log cache.
Files:| ... | ...@@ -1291,7 +1291,9 @@ | |
| 1291 | 1291 | // get the URL for that path |
| 1292 | 1292 | |
| 1293 | 1293 | CTSVNPath url = path.IsUrl() |
| 1294 | ? path | |
| 1294 | // GetURLFromPath() always returns the URL escaped, so we have to escape the url we | |
| 1295 | // get from the client too. | |
| 1296 | ? CTSVNPath (CUnicodeUtils::GetUnicode(CPathUtils::PathEscape(CUnicodeUtils::GetUTF8(path.GetSVNPathString())))) | |
| 1295 | 1297 | : CTSVNPath (repositoryInfoCache->GetSVN().GetURLFromPath (path)); |
| 1296 | 1298 | |
| 1297 | 1299 | // decode revisions |