Author: mtredinnick
Date: 2006-07-13 20:17:17 -0500 (Thu, 13 Jul 2006)
New Revision: 3343

Modified:
   django/trunk/django/contrib/admin/templates/admin/base.html
Log:
Fixed another title string that needed escaping (these strings do need
escaping, because they can be created from object strings, in part).


Modified: django/trunk/django/contrib/admin/templates/admin/base.html
===================================================================
--- django/trunk/django/contrib/admin/templates/admin/base.html 2006-07-14 
01:03:01 UTC (rev 3342)
+++ django/trunk/django/contrib/admin/templates/admin/base.html 2006-07-14 
01:17:17 UTC (rev 3343)
@@ -26,7 +26,7 @@
         {% block nav-global %}{% endblock %}
     </div>
     <!-- END Header -->
-    {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">{% trans 
'Home' %}</a>{% if title %} &rsaquo; {{ title }}{% endif %}</div>{% endblock %}
+    {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">{% trans 
'Home' %}</a>{% if title %} &rsaquo; {{ title|escape }}{% endif %}</div>{% 
endblock %}
     {% endif %}
 
         {% if messages %}


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates
-~----------~----~----~----~------~----~------~--~---

Reply via email to