##// END OF EJS Templates
files: fixed unicode problems in specially encoded paths handler.
super-admin -
r4751:88359629 default
parent child Browse files
Show More
@@ -343,7 +343,7 b' def files_url_data(request):'
343 if 'f_path' not in matchdict:
343 if 'f_path' not in matchdict:
344 matchdict['f_path'] = ''
344 matchdict['f_path'] = ''
345 else:
345 else:
346 matchdict['f_path'] = urllib.quote(matchdict['f_path'])
346 matchdict['f_path'] = urllib.quote(safe_str(matchdict['f_path']))
347 if 'commit_id' not in matchdict:
347 if 'commit_id' not in matchdict:
348 matchdict['commit_id'] = 'tip'
348 matchdict['commit_id'] = 'tip'
349
349
General Comments 0
You need to be logged in to leave comments. Login now