X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/blobdiff_plain/2aee6b687e552455a4f8089eab83660bfc73b299..ec42482bea99052d631ecf6062f2a7e1e8376091:/skins/photo_download.py diff --git a/skins/photo_download.py b/skins/photo_download.py index 3a185fd..674a2ae 100755 --- a/skins/photo_download.py +++ b/skins/photo_download.py @@ -1,5 +1,6 @@ req = context.REQUEST resp = req.RESPONSE -resp.setHeader('Content-Disposition', 'attachment; filename=%s' % context.getId()) +filename = getattr(context, 'orig_name', context.getId()) +resp.setHeader('Content-Disposition', 'attachment; filename=%s' % filename) return context.index_html(req, resp)