handleException($th); } else { // Fallback error logging error_log('Butterfly Plugin SCSS Error: ' . $th->getMessage()); } } } else if ($css_type === 'css') { $css .= $css_custom; } header('Content-Type: text/css'); $is_cacheable = !isset($_GET['debug']) && !isset($_GET['nocache']); if ($is_cacheable) { // Makes CSS cacheable by browsers and proxies $max_age = WEEK_TIMESTAMP; header_remove('Pragma'); header('Cache-Control: public'); header('Cache-Control: max-age=' . $max_age); header('Expires: ' . gmdate('D, d M Y H:i:s \G\M\T', time() + $max_age)); } echo $css;