Update of /cvsroot/phpweather/phpweather/output
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30358/output
Modified Files:
pw_text.php
Log Message:
Removed a leeding zero in the wind direction. Closes #1082695.
Index: pw_text.php
===================================================================
RCS file: /cvsroot/phpweather/phpweather/output/pw_text.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- pw_text.php 11 Feb 2004 14:02:17 -0000 1.24
+++ pw_text.php 13 Jan 2005 23:17:39 -0000 1.25
@@ -713,7 +713,7 @@
$wind_str .= $this->strings['wind_from'] .
$this->properties['mark_begin'] .
$dir_str . $this->properties['mark_end'] . ' (' .
- $this->properties['mark_begin'] . $deg . '°' .
+ $this->properties['mark_begin'] . ($deg * 1) . '°' .
$this->properties['mark_end'] . ')';
if (!empty($var_beg)) {
|