Fixed #11972: Corrected title filter handling of numbers followed by letters. ...
Fixed #11972: Corrected title filter handling of numbers followed by letters. Thanks schwank@gmail.com and Randy Barlow.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11822 bcc190cf-cafb-0310-a4f2-bffc1f526a37
# XXX No test for "title" filter; needs an actual object.
'filter-truncatewords01':('{% autoescape off %}{{ a|truncatewords:"2" }} {{ b|truncatewords:"2"}}{% endautoescape %}',{"a":"alpha & bravo","b":mark_safe("alpha & bravo")},u"alpha & ... alpha & ..."),
'filter-truncatewords02':('{{ a|truncatewords:"2" }} {{ b|truncatewords:"2"}}',{"a":"alpha & bravo","b":mark_safe("alpha & bravo")},u"alpha & ... alpha & ..."),