*** lib/TWiki/Plugins/EditTablePlugin.pm.orig Thu Sep 18 13:40:26 2003 --- lib/TWiki/Plugins/EditTablePlugin.pm Thu Sep 18 13:51:11 2003 *************** *** 17,22 **** --- 17,23 ---- # ========================= # # This is the EditTablePlugin used to edit tables in place. + # v 18 Sep 2003 # # Each plugin is a package that contains the subs: # *************** *** 533,539 **** # change any new line character sequences to
$val =~ s/(\n\r?)|(\r\n?)+/
/gos; $cellDefined = 1; ! $cell = $val; } elsif( $col <= @cells ) { $cell = $cells[$col-1]; $cellDefined = 1 if( length( $cell ) > 0 ); --- 534,541 ---- # change any new line character sequences to
$val =~ s/(\n\r?)|(\r\n?)+/
/gos; $cellDefined = 1; ! # Expanse %-vars ! $cell = &TWiki::Func::expandCommonVariables( $val, $theTopic, $theWeb ); } elsif( $col <= @cells ) { $cell = $cells[$col-1]; $cellDefined = 1 if( length( $cell ) > 0 );