
jon at endpoint
Aug 22, 2009, 9:11 AM
Post #3 of 6
(946 views)
Permalink
|
|
Re: Interchange::Link changes - submitted for your approval
[In reply to]
|
|
On Sat, 22 Aug 2009, Jon Jensen wrote: > $r->content_type($set_content); > $skip_blank_lines = $r->dir_config('NoBlankLines'); > while (<SOCK>) { > push @out, $_ unless $skip_blank_lines and ! /\S/; > } Well, it was silly to use a slightly different name, and I see I didn't declare the variable first. How about: $r->content_type($set_content); my $no_blank_lines = $r->dir_config('NoBlankLines'); while (<SOCK>) { push @out, $_ unless $no_blank_lines and ! /\S/; } Jon -- Jon Jensen End Point Corporation http://www.endpoint.com/ Software development with Interchange, Perl, PostgreSQL, Apache, Linux, ... _______________________________________________ interchange-users mailing list interchange-users [at] icdevgroup http://www.icdevgroup.org/mailman/listinfo/interchange-users
|