Die Sache war schon lange gemeldet.
Hier nochmal die funktionierende Zwischenlösung:
Code: Select all
<?php
if(isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/MSIE/', $_SERVER['HTTP_USER_AGENT']))
{
@ini_set( 'zlib.output_compression','Off' );
}
header("Content-type: text/css");
$theme="default";
$style="style";
if (isset($_GET['ie']))
{
$style.="_ie";
}
$style .= ".css";
if (file_exists(dirname(__FILE__)."/themes/".$theme."/css/".$style))
{
readfile(dirname(__FILE__)."/themes/".$theme."/css/".$style);
}
else if (file_exists(dirname(__FILE__)."/themes/default/css/".$style))
{
readfile(dirname(__FILE__)."/themes/default/css/".$style);
}
# vim:ts=4 sw=4 noet
?>
Also warten Leute , das wird erst sehr viel später etwas in der offiziellen Version - bis dahin - selber machen.After 0.13 is out, I'll do
another round of these performance fixes.