[ic] Interchange::Link changes - submitted for your approval

Grant emailgrant at gmail.com
Sat Aug 22 21:58:39 UTC 2009


>>    $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

Still works great, thank you for the correction.

- Grant



More information about the interchange-users mailing list