diff options
Diffstat (limited to 'Xerl/Page/Content.pm')
| -rw-r--r-- | Xerl/Page/Content.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Xerl/Page/Content.pm b/Xerl/Page/Content.pm index 6cadd9a..b63d710 100644 --- a/Xerl/Page/Content.pm +++ b/Xerl/Page/Content.pm @@ -112,7 +112,8 @@ sub _insertrules { # Fetch via LWP::Simple #my $got = get($text); # Bug in FreeBSD Perl and LWP Module - my $got = `curl "$text"`; + my $curl = $config->get_curlpath(); + my $got = `$curl "$text"`; if ($!) { push @content, "$text: $!"; } else { |
