﻿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
34892	Static files aren't served correctly on dev server when DEBUG and  FORCE_SCRIPT_NAME are enabled	EugeneM	nobody	"It looks like the bug is from ancient times due to rare use of FORCE_SCRIPT_NAME with dev server. So the version to be fixed is unknown

/contrib/staticfiles/handlers.py
{{{
    def serve(self, request):                                                   
        """"""Serve the request path.""""""
--       return serve(request, self.file_path(request.path), insecure=True)
++       return serve(request, self.file_path(request.path_info), insecure=True)
}}}

"	Bug	new	contrib.staticfiles	4.2	Normal		FORCE_SCRIPT_NAME DEBUG STATIC_URL		Unreviewed	1	0	0	0	0	0
