Fixed it. New feature in django-dev is HTML escaping for any template tags (good against cross-site scripting problems).
Had to apply the safe filter to any template tags I don't want auto- escaped. OLD: {{ block.super|safe }} NEW: {{ block.super|safe }} Read more about it in django/docs/template.txt. I guess if I'm going to be using django-latest, I'll need to stay updated on the changes. =) - Josh On Nov 14, 10:34 am, Josh <[EMAIL PROTECTED]> wrote: > block.super was working great before i did an svn up this morning.. > > All of my block.super template tags are returning the HTML character > codes instead of the actual HTML - so instead of getting proper HTML > links, i get the text of the HTML link. > > Has anyone come across this? New bug? > > - Josh --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---