Version 0.8.2 ()
------------------------------------------------------------------------
+ * CSS does no longer emit cache-restricting headers, so that the
+ stylesheets can be cached by the browser for followup-requests
+ Thanks to Sencer for pointing this out! (garvinhicking)
+
* Patch/Bug #1209410 by swiesinger: When using shortcut admin URL,
use https:// when specified by user
define('IN_installer', true);
define('IN_upgrader', true);
+session_cache_limiter('public');
include_once('serendipity_config.inc.php');
if (!isset($css_mode)) {
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) {
header('Cache-Control: no-cache');
+} else {
+ header('Cache-Control:');
+ header('Pragma:');
+ header('Expires: ' . gmdate('D, d M Y H:i:s \G\M\T', time()+3600));
}
header('Content-type: text/css');