For all, having problems with Save Mode on this is my little fix to solve it.
Find twice
PHP Code:
if (function_exists('curl_init') AND $ch = curl_init())
{
curl_setopt($ch, CURLOPT_URL, $match[1]);
curl_setopt($ch, CURLOPT_TIMEOUT, $vbulletin->options['linktitles_timeout']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$file_contents = curl_exec($ch);
}
And replace with:
PHP Code:
$file_contents = @file_get_contents($match[1]);
Then I added a small tweak to parse url's without a scheme, like "http://".
find twice:
PHP Code:
$url_host = $url['host'];
After it add:
PHP Code:
if(!$url['scheme'])
{
$match[1] = "http://" . $match[1];
}
Now it works for me beautyful.
Thanks and installed.