diff options
| author | 2021-01-17 12:32:24 -0500 | |
|---|---|---|
| committer | 2021-01-17 18:32:24 +0100 | |
| commit | 180ca4d1683a5a8a17eae75dc54204ae74d3bdfe (patch) | |
| tree | 582adba6ad8318a9aba3bf0d5e19dca85e2e0122 /lib | |
| parent | 82a2a6f023f58f65df93d11339f4be36a8c2b16f (diff) | |
Curlopt fixes (#3381)
* sort results in find() method
* Update lib/lib_phpQuery.php
Co-Authored-By: Alexandre Alapetite <alexandre@alapetite.fr>
* Update lib/lib_phpQuery.php
Co-Authored-By: Alexandre Alapetite <alexandre@alapetite.fr>
* Fix fetching articles
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/lib_rss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php index d734f722c..37eea7c0f 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -189,7 +189,7 @@ function customSimplePie($attributes = array()) { } if (!empty($attributes['curl_params']) && is_array($attributes['curl_params'])) { foreach ($attributes['curl_params'] as $co => $v) { - curl_setopt($ch, $co, $v); + $curl_options[$co] = $v; } } $simplePie->set_curl_options($curl_options); |
