From 7fe07ffeaf69a1e6f5b7e1777c5f6003d772b5fa Mon Sep 17 00:00:00 2001 From: eliott Date: Wed, 20 Aug 2008 00:53:45 -0700 Subject: [PATCH] fixes for FS#11153 fix for validation error due to unescaped & in url fixed/updated DTD path --- templates/base.html | 2 +- templates/public/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/base.html b/templates/base.html index 2200f58..ea69204 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,4 +1,4 @@ - + {% block title %}Arch Linux{% endblock %} diff --git a/templates/public/index.html b/templates/public/index.html index 04b6bad..af78b11 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -77,7 +77,7 @@ {{ repo.name|capfirst }} {% for arch in arches %} - {{ arch.name }}{% if not forloop.last %}, {% endif %} + {{ arch.name }}{% if not forloop.last %}, {% endif %} {% endfor %} -- 1.5.5.1