I don't receive the error message anymore but still it doesn't sort. Below I copied a piece of my xml file. I would like to sort on name of the restaurant. Can you pls. help?
<xsl:template match="/">
<html>
<body style="background-color=#99CCFF;margin-left=3em;font-family:Arial,helvetica,sans-serif;font-size:12pt">
<h2>My Restaurants Guide</h2>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<xsl:template match="restaurant">
<p>
<xsl:apply-templates>
<xsl:sort select="name"/>
</xsl:apply-templates>
</p>
</xsl:template>
<xsl:template match="name">