Commit 98d08439 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixed: files with an apostrophe in their names can't be accessed in the repository

git-svn-id: http://redmine.rubyforge.org/svn/trunk@522 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 8614c00c
......@@ -192,7 +192,7 @@ module SvnRepos
def target(path)
path ||= ""
base = path.match(/^\//) ? root_url : url
" \"" << "#{base}/#{path}".gsub(/["'?<>\*]/, '') << "\""
" \"" << "#{base}/#{path}".gsub(/["?<>\*]/, '') << "\""
end
def logger
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment