# HG changeset patch # User Sylvain Thénault # Date 1319181823 -7200 # Node ID 48e1f79925075f8e7fad6a4dd3ed9e13fabe2388 # Parent 6ea7378b2c142a07518c26e2b57ec35d73c66d8b [ibreadcrumbs] missing xml_escape on latest path part (usually view's title). Closes #2037506 diff -r 6ea7378b2c14 -r 48e1f7992507 web/views/ibreadcrumbs.py --- a/web/views/ibreadcrumbs.py Fri Oct 21 09:23:43 2011 +0200 +++ b/web/views/ibreadcrumbs.py Fri Oct 21 09:23:43 2011 +0200 @@ -159,7 +159,7 @@ xml_escape(url), xml_escape(uilib.cut(title, textsize)))) else: textsize = self._cw.property_value('navigation.short-line-size') - w(uilib.cut(unicode(part), textsize)) + w(xml_escape(uilib.cut(unicode(part), textsize))) class BreadCrumbETypeVComponent(BreadCrumbEntityVComponent):