2
First of all, I must say that I have to correct this in the zip file.
To not see anymore _MSW_OPENERROR or _MSW_WRITEERROR you should go to your language dir and then in blocks.php uncomment lines 50 and 51.
Now about your returned error, I can just think about a connection problem with Yahoo when you want to open a link or a server host problem with the bold code (not sure, just a assumption).
Here's the portion of code which is using to get Yahoo weather:
function msw_openpage( $citycode, $unit )
{
// Page to open
if( $unit == 0 ) { $openfile = "http://weather.yahoo.com/forecast/".$citycode."_c.html"; }
else { $openfile = "http://weather.yahoo.com/forecast/".$citycode."_f.html"; }
$openerror = 0;
[b]$mswdata = @implode ( '', file( $openfile ) );[/b]
if( $mswdata == FALSE ) {
$mswdata = ""._MSW_OPENERROR."";
$openerror = 1;
}
return( $mswdata );
}