To fix this issue,
1) Download the attached file.
2) unzip it on your computer
3) FTP it to the 'atahualpa' folder on your host, replacing the copy that is there.
css.php.zip
--------------------------------------------------------------
The following is the change that was made to the code:
--------------------------------------------------------------
css.php (version 3.6.7) lines 2944-2951 were changed from
HTML Code:
if ( $bfa_ata['css_compress'] == "Yes" AND
!( isset($bfa_ata_debug) AND $bfa_ata['allow_debug'] == "Yes" ) ) {
ob_end_flush();
}
if ( isset($bfa_ata_preview) OR $bfa_ata['css_external'] == "Inline" OR
( isset($bfa_ata_debug) AND $bfa_ata['allow_debug'] == "Yes" ) ) {
echo "</style>\n";
}
HTML Code:
if ( $bfa_ata['css_compress'] == "Yes" AND
!($bfa_ata_debug==1 AND $bfa_ata['allow_debug'] == "Yes" ) ) {
ob_end_flush();
}
if ( isset($bfa_ata_preview) OR $bfa_ata['css_external'] == "Inline" OR
($bfa_ata_debug==1 AND $bfa_ata['allow_debug'] == "Yes" ) ) {
echo "</style>\n";
}