﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1122	 Django do not serve static binary files (e.g. images) correctly	hipertracker@…	Adrian Holovaty	"Django do not serve static binary files (e.g. images) correctly

'''Solution:'''

django-0.90-py2.4.egg\django\views\static.py line 52:

Change line 52 from:

return HttpResponse(open(fullpath, 'rb').read(), mimetype=mimetype)

to:

return HttpResponse(open(fullpath).read(), mimetype=mimetype)
"	defect	closed	Core (Other)	0.90	critical	invalid	static files images		Unreviewed	0	0	0	0	0	0
