Author Topic: (SOLVED) WB2 Spelling mistake?  (Read 1463 times)

Offline Ecce

  • Jr. Member
  • **
  • Posts: 21
    • Kentallen weather
(SOLVED) WB2 Spelling mistake?
« 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?

« Last Edit: June 07, 2016, 04:09:28 PM by Ecce »

Offline Mr.Meteo

  • Administrator
  • Hero Member
  • *****
  • Posts: 1120
    • http://www.meteostours.ca
Re: WB2 Spelling mistake?
« Reply #1 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
Please, consider supporting this site 

Offline Ecce

  • Jr. Member
  • **
  • Posts: 21
    • Kentallen weather
Re: WB2 Spelling mistake?
« Reply #2 on: June 07, 2016, 01:04:57 PM »
Txs Jaques, will go hunt down where it comes from then ;)

Offline Ecce

  • Jr. Member
  • **
  • Posts: 21
    • Kentallen weather
(SOLVED) WB2 Spelling mistake?
« Reply #3 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>'?>


« Last Edit: June 08, 2016, 02:09:47 AM by Ecce »