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/09/08 09:06:12 UTC

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

matts       2003/09/08 00:06:12

  Modified:    lib/Apache/AxKit/Language XSP.pm
  Log:
  Fix for attr_value_template test 15
  
  Revision  Changes    Path
  1.49      +3 -2      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.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- XSP.pm	11 Aug 2003 21:05:21 -0000	1.48
  +++ XSP.pm	8 Sep 2003 07:06:12 -0000	1.49
  @@ -877,7 +877,8 @@
           }
           # otherwise we're in code now...
           $output .= ".do{";
  -        while ($value =~ /\G([^'"}]*)}/gc) {
  +        # while ($value =~ /\G([^'"}]*)}/gc) {
  +        while ($value =~ /\G([^}]*)}/gc) {
               $output .= _undouble_curlies($1);
               if ($value =~ /\G}/gc) {
                   $output .= "}";