Merge pull request #83 from rupaheizu/patch-1

Fixed issue #81.
This commit is contained in:
Pop 2014-06-01 08:27:01 -05:00
commit b50a5fb516

View File

@ -71,7 +71,11 @@ class SimilarImages
if ($search_url) {
$params['url'] = $search_url;
} else {
$params['file'] = '@' . $source_file;
if (function_exists('curl_file_create')) { // PHP v5.5.* fix
$params['file'] = curl_file_create($source_file);
} else {
$params['file'] = '@' . $source_file;
}
}
foreach ($services_list as $k => $s)
@ -425,4 +429,4 @@ class SimilarImages
{
return Rails::publicPath() . self::SEARCH_CACHE_DIR;
}
}
}