
interchange-cvs at icdevgroup
May 12, 2008, 9:08 AM
Post #1 of 1
(59 views)
Permalink
|
|
interchange - heins modified lib/Vend/Interpolate.pm
|
|
User: heins Date: 2008-05-12 16:08:43 GMT Modified: lib/Vend Interpolate.pm Log: * Fix bug: Remove /o causing change of delimiter for all loops on page. Revision Changes Path 2.301 interchange/lib/Vend/Interpolate.pm rev 2.301, prev_rev 2.300 Index: Interpolate.pm =================================================================== RCS file: /var/cvs/interchange/lib/Vend/Interpolate.pm,v retrieving revision 2.300 retrieving revision 2.301 diff -u -r2.300 -r2.301 --- Interpolate.pm 23 Apr 2008 03:16:23 -0000 2.300 +++ Interpolate.pm 12 May 2008 16:08:43 -0000 2.301 @@ -1,6 +1,6 @@ # Vend::Interpolate - Interpret Interchange tags # -# $Id: Interpolate.pm,v 2.300 2008-04-23 03:16:23 pajamian Exp $ +# $Id: Interpolate.pm,v 2.301 2008-05-12 16:08:43 mheins Exp $ # # Copyright (C) 2002-2008 Interchange Development Group # Copyright (C) 1996-2002 Red Hat, Inc. @@ -28,7 +28,7 @@ require Exporter; @ISA = qw(Exporter); -$VERSION = substr(q$Revision: 2.300 $, 10); +$VERSION = substr(q$Revision: 2.301 $, 10); @EXPORT = qw ( @@ -4878,7 +4878,7 @@ } eval { - @rows = map { [ split /\Q$delim/o, $_ ] } split /\Q$splittor/, $list; + @rows = map { [ split /\Q$delim/, $_ ] } split /\Q$splittor/, $list; }; } } _______________________________________________ interchange-cvs mailing list interchange-cvs[at]icdevgroup.org http://www.icdevgroup.org/mailman/listinfo/interchange-cvs
|