]> granicus.if.org Git - docbook-dsssl/commitdiff
Forgot curly braces in AVT for height/width
authorNorman Walsh <ndw@nwalsh.com>
Thu, 9 Aug 2001 10:09:05 +0000 (10:09 +0000)
committerNorman Walsh <ndw@nwalsh.com>
Thu, 9 Aug 2001 10:09:05 +0000 (10:09 +0000)
xsl/fo/graphics.xsl

index 9c09230b64a9ade89821bf47a6aa274ef1f61217..d62e15871cc8dc1ddd2d632686d5bc43e07bf0ff 100644 (file)
@@ -172,15 +172,15 @@ FIXME: make is.graphic.* work correctly depending on the backend!
                     or $fop.extensions != 0
                     or $arbortext.extensions != 0">
       <fo:external-graphic src="{$filename}"
-                           width="$width"
-                           height="$height"
+                           width="{$width}"
+                           height="{$height}"
                            content-width="{$content-width}"
                            content-height="{$content-height}"/>
     </xsl:when>
     <xsl:otherwise>
       <fo:external-graphic src="url({$filename})"
-                           width="$width"
-                           height="$height"
+                           width="{$width}"
+                           height="{$height}"
                            content-width="{$content-width}"
                            content-height="{$content-height}"/>
     </xsl:otherwise>