Update of /cvsroot/phpweather/phpweather/output
In directory sc8-pr-cvs1:/tmp/cvs-serv14029/output
Modified Files:
pw_text.php
Log Message:
The final full-stop would be omitted if the dew-point was missing in
the report.
Index: pw_text.php
===================================================================
RCS file: /cvsroot/phpweather/phpweather/output/pw_text.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- pw_text.php 8 May 2003 19:42:36 -0000 1.18
+++ pw_text.php 14 Jun 2003 23:37:09 -0000 1.19
@@ -756,9 +756,9 @@
$this->pref_units($this->properties['mark_begin'] . $dew_c .
$this->properties['mark_end'] . ' °C',
$this->properties['mark_begin'] . $dew_f .
- $this->properties['mark_end'] . ' °F') . '.';
+ $this->properties['mark_end'] . ' °F');
}
- return $output;
+ return $output . '.';
}
function print_pretty_altimeter($altimeter) {
|