diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2013-12-24 17:01:40 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-12-24 07:16:30 -0800 |
commit | 03a01efdcb536ab2e123acf5f7f69b886f5632cf (patch) | |
tree | 9f17466c2be273417b43f3cc1482e375afba2c54 /xslt/uddf.xslt | |
parent | d72be583957ddbda17ff19d9646ee7cd550808e8 (diff) | |
download | subsurface-03a01efdcb536ab2e123acf5f7f69b886f5632cf.tar.gz |
We need to use include statement on XSLT nowadays
After change to include XSLT files in resources, the import quit
working (even though the files and templates were found properly). This
patch uses include statement instead as it seems to work in our case.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'xslt/uddf.xslt')
-rw-r--r-- | xslt/uddf.xslt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xslt/uddf.xslt b/xslt/uddf.xslt index bb7a554d6..efc18c14d 100644 --- a/xslt/uddf.xslt +++ b/xslt/uddf.xslt @@ -4,7 +4,7 @@ xmlns:u1="http://www.streit.cc/uddf/3.1/" exclude-result-prefixes="u u1" version="1.0"> - <xsl:import href="commonTemplates.xsl"/> + <xsl:include href="commonTemplates.xsl"/> <xsl:strip-space elements="*"/> <xsl:output method="xml" indent="yes"/> |