1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-26 11:59:02 +02:00

Added ltrim to in fetch_file_contents to fix edge cases where a URL has one or more spaces before it, which causes CURL to fail.

This commit is contained in:
Dave Zaikos 2014-08-22 16:44:20 -04:00
parent 2242bb38d2
commit 32703cc636

View File

@ -354,6 +354,7 @@
global $fetch_last_content_type;
global $fetch_curl_used;
$url = ltrim($url, ' ');
$url = str_replace(' ', '%20', $url);
if (!defined('NO_CURL') && function_exists('curl_init')) {