bug #1517428, CSS, IE 6 and output compression

This commit is contained in:
Marc Delisle
2006-10-13 12:24:47 +00:00
parent 3ae6f25cda
commit ef25d174ec
2 changed files with 12 additions and 0 deletions

View File

@@ -5,6 +5,11 @@ phpMyAdmin - ChangeLog
$Id$
$Source$
2006-10-13 Marc Delisle <lem9@users.sourceforge.net>
* css/phpmyadmin.css.php: bug #1517428, some IE 6 versions have
problems loading CSS when zlip.output_compression is on,
thanks to Juergen Wind
2006-10-12 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php: bug #1566219, automated timestamp values

View File

@@ -7,6 +7,13 @@ define('PMA_MINIMUM_COMMON', true);
require_once './libraries/common.lib.php';
require_once './libraries/sqlparser.lib.php';
// MSIE 6 (at least some unpatched versions) has problems loading CSS
// when zlib_compression is on
if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER == '6'
&& (ini_get('zlib.output_compression')) ) {
ini_set('zlib.output_compression', 'Off');
}
if ($GLOBALS['text_dir'] === 'ltr') {
$right = 'right';
$left = 'left';