summaryrefslogtreecommitdiffstats
path: root/echo
diff options
context:
space:
mode:
authorJorge L. Williams <jorge.williams@rackspace.com>2011-04-15 06:54:36 -0500
committerJorge L. Williams <jorge.williams@rackspace.com>2011-04-15 06:54:36 -0500
commit945ed0e115e58680ace8a7461eb7af872bc8b441 (patch)
treeb5fd59f10e2c283f117c09630b1d3984d57dfc9d /echo
parent3145ac75264edcd1c563562657ea87197e264d4d (diff)
Better quote handling.
Diffstat (limited to 'echo')
-rw-r--r--echo/xsl/echo.xsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/echo/xsl/echo.xsl b/echo/xsl/echo.xsl
index 83d33fd0..dbe8b5dd 100644
--- a/echo/xsl/echo.xsl
+++ b/echo/xsl/echo.xsl
@@ -34,7 +34,7 @@
<template match="text()">
<variable name="noeol" select="translate(string(.),'&#x000a;','')"/>
- <variable name="noquote" select="translate($noeol,'&quot;','!')"/>
+ <variable name="noquote" select="translate($noeol,'&quot;',&quot;&apos;&quot;)"/>
<value-of select="$noquote"/>
</template>