[exim-cvs] Fix variable reference in XSL: {$foo} not ${foo}

Top Page
Delete this message
Reply to this message
Author: Exim Git Commits Mailing List
Date:  
To: exim-cvs
Subject: [exim-cvs] Fix variable reference in XSL: {$foo} not ${foo}
Gitweb: http://git.exim.org/exim-website.git/commitdiff/6e83194bf39f19eb6b0ececd01d908fa4cdd6931
Commit:     6e83194bf39f19eb6b0ececd01d908fa4cdd6931
Parent:     f380b4ff5bd040aac4a8667ecb311da38d139de5
Author:     Phil Pennock <pdp@???>
AuthorDate: Thu Dec 6 10:22:54 2012 -0500
Committer:  Phil Pennock <pdp@???>
CommitDate: Thu Dec 6 10:22:54 2012 -0500


    Fix variable reference in XSL: {$foo} not ${foo}
---
 templates/doc/chapter.xsl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/templates/doc/chapter.xsl b/templates/doc/chapter.xsl
index 52b47f9..0b0bc06 100644
--- a/templates/doc/chapter.xsl
+++ b/templates/doc/chapter.xsl
@@ -32,7 +32,7 @@
       <xsl:variable name="html.body.outer.append">
          <div id="toc">
             <ul class="hidden"/>
-            <img src="${staticroot}/doc/contents.png" width="16" height="155"/>
+            <img src="{$staticroot}/doc/contents.png" width="16" height="155"/>
          </div>
       </xsl:variable>