]> git.ozlabs.org Git - patchwork/commitdiff
[html] Fix apparently-unclosed script tag
authorJeremy Kerr <jk@ozlabs.org>
Wed, 24 Sep 2008 07:29:36 +0000 (17:29 +1000)
committerJeremy Kerr <jk@ozlabs.org>
Wed, 24 Sep 2008 07:29:36 +0000 (17:29 +1000)
Firefox doesn't seem to grok the <script/> notation.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
templates/base.html

index 1bac4a90c54fbdd1fbed02ac88ac5fbe7c55ad6b..c6a5b03dbae751d67bd32889699cf05e98c69d3c 100644 (file)
@@ -1,12 +1,12 @@
-{% load pwurl %}
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+{% load pwurl %}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
   <title>{% block title %}Patchwork{% endblock %} - Patchwork</title>
   <link rel="stylesheet" type="text/css" href="/css/style.css"/>
-  <script language="JavaScript" type="text/javascript" src="/js/common.js" />
+  <script language="JavaScript" type="text/javascript" src="/js/common.js">
+  </script>
 {% block headers %}{% endblock %}
  </head>
  <body>