Merge pull request #5769 from spenczar/no_urlescaping_title_tag

Don't urlescape the text that goes into a title tag
pull/37/head
Min RK 12 years ago
commit 22133997bd

@ -42,7 +42,7 @@ class TreeHandler(IPythonHandler):
if len(comps) > 3:
for i in range(len(comps)-2):
comps.pop(0)
page_title = url_escape(url_path_join(*comps))
page_title = url_path_join(*comps)
if page_title:
return page_title+'/'
else:

Loading…
Cancel
Save