Nope.
It looks like
PHP Code:
function fetch_new_weather ( $in )
{
global $vbphrase;
$data = array ();
$soap_server = 'forecast.php?wid=' . $in . '&lid=' . WEATHER_ID;
$out = explode ( '-ss-', file_get_contents ( $soap_server ) );
if ( !strstr ( $out[0], 'ok' ) )
{
return ( $data );
}
return ( unserialize ( $out[1] ) );
}
**edit**
WOOHOO! Got it working! (used 'bburl' as the other one is my homepage.)
There's also a 'cannot find lang_en.php' error in there after it finds forecast.php