yellow_fetch($url)
yellow/yellow.module, line 478
Fetch data from yahoo!
function yellow_fetch($url) {
$result = drupal_http_request($url);
if ($result->code == 200) {
return $result->data;
}
else {
return t('Failed to get REST document');
}
}