diff options
| author | Paul Buetow (europa) <paul@buetow.org> | 2015-05-17 10:21:56 +0100 |
|---|---|---|
| committer | Paul Buetow (europa) <paul@buetow.org> | 2015-05-17 10:21:56 +0100 |
| commit | ee1d9d4243e970d102ea4f57bfacb379e5b25b3a (patch) | |
| tree | 61f72583575b74df288b291f166d41ce5decce30 /Xerl | |
| parent | fe5a81dc73149765ba75202c29684144c080accd (diff) | |
add curlpath
Diffstat (limited to 'Xerl')
| -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 { |
