
interchange-cvs at icdevgroup
Mar 20, 2009, 11:59 AM
Post #1 of 1
(305 views)
Permalink
|
|
interchange - heins modified lib/Vend/Table/Editor.pm
|
|
User: heins Date: 2009-03-20 18:59:35 GMT Modified: lib/Vend/Table Editor.pm Log: * Fix bug found by Jeff Boes <jeff [at] endpoint> which prevented custom widget type from working. Revision Changes Path 1.93 interchange/lib/Vend/Table/Editor.pm rev 1.93, prev_rev 1.92 Index: Editor.pm =================================================================== RCS file: /var/cvs/interchange/lib/Vend/Table/Editor.pm,v retrieving revision 1.92 retrieving revision 1.93 diff -u -r1.92 -r1.93 --- Editor.pm 10 May 2008 14:07:40 -0000 1.92 +++ Editor.pm 20 Mar 2009 18:59:35 -0000 1.93 @@ -1,6 +1,6 @@ # Vend::Table::Editor - Swiss-army-knife table editor for Interchange # -# $Id: Editor.pm,v 1.92 2008-05-10 14:07:40 mheins Exp $ +# $Id: Editor.pm,v 1.93 2009-03-20 18:59:35 mheins Exp $ # # Copyright (C) 2002-2008 Interchange Development Group # Copyright (C) 2002 Mike Heins <mike [at] perusion> @@ -26,7 +26,7 @@ package Vend::Table::Editor; use vars qw($VERSION); -$VERSION = substr(q$Revision: 1.92 $, 10); +$VERSION = substr(q$Revision: 1.93 $, 10); use Vend::Util; use Vend::Interpolate; @@ -902,7 +902,6 @@ if ($record->{type} =~ s/^custom\s+//s) { my $wid = lc $record->{type}; $wid =~ tr/-/_/; - my $w; $record->{attribute} ||= $column; $record->{table} ||= $mtab; $record->{rows} ||= $record->{height}; _______________________________________________ interchange-cvs mailing list interchange-cvs [at] icdevgroup http://www.icdevgroup.org/mailman/listinfo/interchange-cvs
|