merge with branch issue-697

This commit is contained in:
Sebastian Sdorra
2015-05-17 12:28:54 +02:00
2 changed files with 26 additions and 7 deletions

View File

@@ -1141,7 +1141,7 @@ public class RepositoryResource
*/
private String getContentDispositionName(String name)
{
return "attachment; filename=\"".concat(name).concat("\"");
return HttpUtil.createContentDispositionAttachmentHeader(name);
}
/**