You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axkit-dev@xml.apache.org by ma...@apache.org on 2003/02/01 17:58:54 UTC

cvs commit: xml-axkit/lib/Apache/AxKit/Language XSP.pm

matts       2003/02/01 08:58:54

  Modified:    lib/Apache/AxKit/Language XSP.pm
  Log:
  Fixed double escaping of | symbols
  
  Revision  Changes    Path
  1.33      +1 -3      xml-axkit/lib/Apache/AxKit/Language/XSP.pm
  
  Index: XSP.pm
  ===================================================================
  RCS file: /home/cvs/xml-axkit/lib/Apache/AxKit/Language/XSP.pm,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- XSP.pm	29 Jan 2003 01:35:50 -0000	1.32
  +++ XSP.pm	1 Feb 2003 16:58:54 -0000	1.33
  @@ -891,8 +891,6 @@
           return '' unless $text =~ /\S/;
       }
       
  -    $text =~ s/\|/\\\|/g;
  -    
       return '__mk_text_node($document, $parent, '.makeSingleQuoted($text).");\n";
   }