Weather by You!

Templates and Projects support => Php templates => Topic started by: Ecce on June 06, 2016, 04:20:52 PM

Title: (SOLVED) WB2 Spelling mistake?
Post by: Ecce on June 06, 2016, 04:20:52 PM
Or do I just not know my weather related terms yet?

It's in records.php

Highest Rain Rate   0.0 mm/ht

The only reference to mm/ht I can find is in other WB2 templates so am guessing this is a typo?

Title: Re: WB2 Spelling mistake?
Post by: Mr.Meteo on June 07, 2016, 11:56:30 AM
Hi,

It's surely a typo problem, as rain is read in milimiter per hour!

Regards,
Jacques
Title: Re: WB2 Spelling mistake?
Post by: Ecce on June 07, 2016, 01:04:57 PM
Txs Jaques, will go hunt down where it comes from then ;)
Title: (SOLVED) WB2 Spelling mistake?
Post by: Ecce on June 07, 2016, 04:08:44 PM
Am a bit rusty with this .php malarky so it took me a while,

line 46 of records_txt.php

Code: [Select]
<?php echo '<td>'.$Tr_rrateM.'</td><td>'.$rrateM.' '.$rainunit.'/ht</td><td>'.$TrrateMF.'</td>'?>
... should read

Code: [Select]
<?php echo '<td>'.$Tr_rrateM.'</td><td>'.$rrateM.' '.$rainunit.'/hr</td><td>'.$TrrateMF.'</td>'?>