CVS: phpweather defaults-dist.php,1.9,1.10
Brought to you by:
iridium
From: Martin G. <gim...@us...> - 2002-03-17 14:06:15
|
Update of /cvsroot/phpweather/phpweather In directory usw-pr-cvs1:/tmp/cvs-serv28083 Modified Files: defaults-dist.php Log Message: New property for pw_text. I'm not actually sure these properties should be collected here, I think it would be better if they were in right in the class-file. I also removed the language property as it isn't used anymore. Index: defaults-dist.php =================================================================== RCS file: /cvsroot/phpweather/phpweather/defaults-dist.php,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- defaults-dist.php 20 Dec 2001 19:11:47 -0000 1.9 +++ defaults-dist.php 17 Mar 2002 14:06:11 -0000 1.10 @@ -21,14 +21,14 @@ $this->properties['proxy_host'] = ''; $this->properties['proxy_port'] = 3128; -$this->properties['db_hostname'] = ''; /* db_common.php */ +$this->properties['db_hostname'] = ''; /* pw_db_common.php */ $this->properties['db_database'] = ''; $this->properties['db_username'] = ''; $this->properties['db_password'] = ''; $this->properties['db_pconnect'] = false; $this->properties['db_port'] = ''; -$this->properties['db_metars'] = 'metars'; /* db_dba.php */ +$this->properties['db_metars'] = 'metars'; /* pw_db_dba.php */ $this->properties['db_stations'] = 'stations'; $this->properties['db_countries'] = 'countries'; @@ -39,7 +39,7 @@ $this->properties['mark_end'] = '</b>'; $this->properties['exclude'] = array(); -$this->properties['language'] = 'en'; /* phpweather.php */ +$this->properties['orientation'] = 'horizontal'; /* pw_text.php */ // hack around PHP bug - the offset to add to a time reported $this->properties['offset'] = 0; |