* Add quotes around the href value in the mailto links on the error pages.
authorMatthijs Kooijman <matthijs@stdin.nl>
Mon, 11 Feb 2008 14:23:40 +0000 (15:23 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Mon, 11 Feb 2008 14:23:40 +0000 (15:23 +0100)
templates/404.html
templates/500.html

index 5a77c6af923eeb6e17d59e19272f112256690747..a7ac049fbeaa359fa3fc6d9866b8c523b3af27b5 100644 (file)
@@ -7,7 +7,7 @@
 <h1>{% trans "Page not found" %}</h1>
 {% blocktrans with email|encode_string|safe as email %}
 The page you requested could not be found. If you think this is an
-error, please send an <a href=mailto:{{ email }}>email</a>.
+error, please send an <a href="mailto:{{ email }}">email</a>.
 {% endblocktrans %}
 {% endwith %}
 {% endblock %}
index aa558e587374adfa0e8b1a01dec8047b01c96f25..5319b2032a47d5a1ee66bab7f88be5534e000c53 100644 (file)
@@ -7,7 +7,7 @@
 <h1>{% trans "Server error" %}</h1>
 {% blocktrans with email|encode_string|safe as email %}
 There was an error processing your request. Please try again, or send 
-an <a href=mailto:{{ email }}>email</a>.
+an <a href="mailto:{{ email }}">email</a>.
 {% endblocktrans %}
 {% endwith %}
 {% endblock %}