Home : Products : Gossamer Links : Development, Plugins and Globals :

Products: Gossamer Links: Development, Plugins and Globals: Re: [Andy] Multi-Select Global...: Edit Log

Here is the list of edits for this post
Re: [Andy] Multi-Select Global...
Heh ;)

Code:
sub {
return join(', ', split(/\n/, $_[0]->{AVS}));
}

or:

Code:
sub {
local $" = ', ';
my @split = split /\n/, $_[0]->{AVS};
return "@split";
}

Last edited by:

Paul: Dec 18, 2002, 8:39 AM

Edit Log: