Revision: 440
Author: kerphi
Date: 2006-04-17 07:55:30 -0700 (Mon, 17 Apr 2006)
ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=440&view=rev
Log Message:
-----------
remove the width parameter limitation because the IE6 bug has been fixed using document.recalc() javascript function
Modified Paths:
--------------
branches/0.x/src/phpfreechatconfig.class.php
Modified: branches/0.x/src/phpfreechatconfig.class.php
===================================================================
--- branches/0.x/src/phpfreechatconfig.class.php 2006-04-17 12:01:45 UTC (rev 439)
+++ branches/0.x/src/phpfreechatconfig.class.php 2006-04-17 14:55:30 UTC (rev 440)
@@ -391,12 +391,14 @@
// 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
if ($ok)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|