[ic] filter last name

Jonathan Clark interchange-users@interchange.redhat.com
Fri Aug 31 12:37:00 2001


> GlobalSub <<EOR
> sub new_filter {
> 	BEGIN {
> 	package Vend::Interpolate;
> 	$Filter{first_three_uc} = sub
> 
> 			my $val = shift;
> 			$val = uc($val);
> 			$val = substr($val,0,3);

appear to have lost a few chars somewhere along the line...

should be:
.
.
$Filter{first_three_uc} = sub {
	my $val = shift;
.
.

Jonathan
Webmaint.