[Phphtmllib-devel] SF.net SVN: phphtmllib:[3189] trunk/open2300/lib/modules/home/widgets/ CurrentCo
Status: Beta
Brought to you by:
hemna
From: <he...@us...> - 2008-11-07 16:44:05
|
Revision: 3189 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3189&view=rev Author: hemna Date: 2008-11-07 16:44:03 +0000 (Fri, 07 Nov 2008) Log Message: ----------- fix some issues Modified Paths: -------------- trunk/open2300/lib/modules/home/widgets/CurrentConditions.inc Modified: trunk/open2300/lib/modules/home/widgets/CurrentConditions.inc =================================================================== --- trunk/open2300/lib/modules/home/widgets/CurrentConditions.inc 2008-11-07 07:40:48 UTC (rev 3188) +++ trunk/open2300/lib/modules/home/widgets/CurrentConditions.inc 2008-11-07 16:44:03 UTC (rev 3189) @@ -59,9 +59,9 @@ $outside_temp = $this->wx->get_temp_out(); $table->add_row(new TDtag(array("width" => "120"),"Outside :"), new DIVtag(array('style' => 'text-align:center; padding-top:2px;height:75px; background-color:#ffffcc;'), - new SPANtag(array('id' => 'idTempF', 'style' => 'font-weight:bold;'),$outside_temp)," F / ". - new SPANtag(array('id' => 'idTempC','style' => 'font-weight:bold;'),WXConversion::fahrenheit_to_celsius($outside_temp)),' C / '. - new SPANtag(array('id' => 'idTempK','style' => 'font-weight:bold;'),WXConversion::fahrenheit_to_kelvin($outside_temp)). " K", + new SPANtag(array('id' => 'idTempF', 'style' => 'font-weight:bold;'),$outside_temp)," F / ", + new SPANtag(array('id' => 'idTempC','style' => 'font-weight:bold;'),WXConversion::fahrenheit_to_celsius($outside_temp)),' C / ', + new SPANtag(array('id' => 'idTempK','style' => 'font-weight:bold;'),WXConversion::fahrenheit_to_kelvin($outside_temp)), " K", BRtag::factory(), $this->wx->get_forecast(), new DIVtag(array('style' => 'padding-top:5px;'), 'Feels like '.$this->wx->get_wind_chill()." F"), new DIVtag(array('style' => 'padding-top:5px;'), $high.' F / '.$low.' F High/Low'))); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |