Ticket #3557: attachment-type-conversion-fix-svn3612.patch
| File attachment-type-conversion-fix-svn3612.patch, 639 bytes (added by steffenp@…, 6 years ago) |
|---|
-
trac/attachment.py
219 219 attachment = Attachment(env, parent_type, parent_id) 220 220 attachment.filename = filename 221 221 attachment.description = description 222 attachment.size = size 223 attachment.time = time 222 attachment.size = size and int(size) or 0 223 attachment.time = time and int(time) or 0 224 224 attachment.author = author 225 225 attachment.ipnr = ipnr 226 226 yield attachment
