﻿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
11456	flatpages append slash not working with unicode urls	hadaraz	nobody	"The append slash is currently:
{{{
if not url.endswith('/') and settings.APPEND_SLASH:
    return HttpResponseRedirect(""%s/"" % request.path)
}}}
It works fine for non-unicode urls. However, when using another regex for the url field which allows unicode chars in it, request.path needs to be quoted for the redirection to work:
{{{
if not url.endswith('/') and settings.APPEND_SLASH:
    return HttpResponseRedirect(""%s/"" % iri_to_uri(urlquote(request.path)))
}}}"		closed	Contrib apps	1.1-beta		duplicate	flatpages	yoan@…	Accepted	0	0	0	0	0	0
