There is a small mistake in the file called
weather_include.txt that's in this hack's ZIP file. Some of you may have put this text inside another PHP file, or made the file into a PHP file and included it from another PHP file. The mistake was the ommission of two lines, one of which causes the date and time of the weather data update (the time AccuWeather released the data) to not show up for the weather feature box or section that you put on another page (using the homeindex_left_weather template), and the other missing line causes the text of the weather type (like partly sunny or rain) to show up under the icon.
The ZIP file will be updated with the correceted file and re-posted above. However, if you already have weather01a.zip, you do not need to redownload it.
Just find this in the code from that file:
PHP Code:
$weatherdata[humidity] = $weather[humidity];
$weatherdata[realfeel] = convert_temp($weather[realfeel],$usersettings[tpc]);
fclose($rawdata);
Change it to this:
PHP Code:
$weatherdata[humidity] = $weather[humidity];
$weatherdata[realfeel] = convert_temp($weather[realfeel],$usersettings[tpc]);
$weatherdata[lastup] = $weather[lastup];
$weatherdata[context] = $weather[context];
fclose($rawdata);
Do NOT make this change to weather.php as it already has the missing line.