Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiyush <poush12@gmail.com>2016-02-19 21:05:07 +0300
committerPiyush Agrawal <poush12@gmail.com>2016-02-20 09:56:54 +0300
commit1d3f8ed037f5aed6f40c73ac40e55be868bdf99d (patch)
tree74330f770ce4090578502b1636a68f3710fb1709 /phpmyadmin.css.php
parentfec3043754aca2802ef4ac61e46cd5730a7ab466 (diff)
remove_msie9 (fix_11987)
Signed-off-by: Piyush Agrawal <poush12@gmail.com>
Diffstat (limited to 'phpmyadmin.css.php')
-rw-r--r--phpmyadmin.css.php23
1 files changed, 8 insertions, 15 deletions
diff --git a/phpmyadmin.css.php b/phpmyadmin.css.php
index 68faed8c2a..0bfec39c5b 100644
--- a/phpmyadmin.css.php
+++ b/phpmyadmin.css.php
@@ -14,21 +14,14 @@
define('PMA_MINIMUM_COMMON', true);
require_once 'libraries/common.inc.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');
-} else {
- $buffer = OutputBuffering::getInstance();
- $buffer->start();
- register_shutdown_function(
- function () {
- echo OutputBuffering::getInstance()->getContents();
- }
- );
-}
+
+$buffer = OutputBuffering::getInstance();
+$buffer->start();
+register_shutdown_function(
+ function () {
+ echo OutputBuffering::getInstance()->getContents();
+ }
+);
// Send correct type:
header('Content-Type: text/css; charset=UTF-8');