diff options
| author | Jorge L. Williams <jorge.williams@rackspace.com> | 2011-04-15 06:54:36 -0500 |
|---|---|---|
| committer | Jorge L. Williams <jorge.williams@rackspace.com> | 2011-04-15 06:54:36 -0500 |
| commit | 945ed0e115e58680ace8a7461eb7af872bc8b441 (patch) | |
| tree | b5fd59f10e2c283f117c09630b1d3984d57dfc9d /echo | |
| parent | 3145ac75264edcd1c563562657ea87197e264d4d (diff) | |
Better quote handling.
Diffstat (limited to 'echo')
| -rw-r--r-- | echo/xsl/echo.xsl | 2 |
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(.),'
','')"/> - <variable name="noquote" select="translate($noeol,'"','!')"/> + <variable name="noquote" select="translate($noeol,'"',"'")"/> <value-of select="$noquote"/> </template> |
