[Phpfreechat-svn] SF.net SVN: phpfreechat: [619] trunk/src/pfcglobalconfig.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-06-17 18:36:55
|
Revision: 619 Author: kerphi Date: 2006-06-17 11:36:48 -0700 (Sat, 17 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=619&view=rev Log Message: ----------- remove the 'width' error Modified Paths: -------------- trunk/src/pfcglobalconfig.class.php Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2006-06-17 18:33:29 UTC (rev 618) +++ trunk/src/pfcglobalconfig.class.php 2006-06-17 18:36:48 UTC (rev 619) @@ -337,15 +337,6 @@ $lg_list = pfcI18N::GetAcceptedLanguage(); if ( $this->language != "" && !in_array($this->language, $lg_list) ) $this->errors[] = _pfc("'%s' parameter is not valid. Available values are : '%s'", "language", implode(", ", $lg_list)); - - // check the width parameter is not used - // because of a display bug in IE - if ( $this->width != "" && - $this->width != "auto" ) - { - $this->errors[] = "Do not uses 'width' parameter because of a display bug in IE6, please look at this workaround : http://www.phpfreechat.net/forum/viewtopic.php?pid=867#p867"; - $ok = false; - } // load smileys from file $this->loadSmileyTheme(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |