summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--xslt/docbook/html/db2html-info.xsl4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5fecde3..36c8302 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-21 Peter Williams <peter@newton.cx>
+
+ * xslt/docbook/html/db2html-info.xsl: Fix generation of
+ copyright information.
+
2005-11-27 Shaun McCance <shaunm@gnome.org>
* NEWS:
diff --git a/xslt/docbook/html/db2html-info.xsl b/xslt/docbook/html/db2html-info.xsl
index 9b3292f..c1f7789 100644
--- a/xslt/docbook/html/db2html-info.xsl
+++ b/xslt/docbook/html/db2html-info.xsl
@@ -474,7 +474,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<xsl:template name="db2html.info.copyrights">
<xsl:param name="node" select="."/>
<xsl:param name="info" select="'FIXME'"/>
- <xsl:variable name="copyrights" select="$info/copyrights"/>
+ <xsl:variable name="copyrights" select="$info/copyright"/>
<xsl:if test="$copyrights">
<div>
<h2 class="copyright">
@@ -484,7 +484,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
</xsl:call-template>
</h2>
<dl>
- <xsl:apply-templates mode="db2html.info.mode" select="$copyrigths"/>
+ <xsl:apply-templates mode="db2html.info.mode" select="$copyrights"/>
</dl>
</div>
</xsl:if>