-
Notifications
You must be signed in to change notification settings - Fork 75
/
css_cacher.php
50 lines (39 loc) · 1.25 KB
/
css_cacher.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
define( '_ISVALID', true );
require_once 'includes/translate.php';
require_once 'includes/config.php';
require_once 'includes/dbi4php.php';
require_once 'includes/formvars.php';
require_once 'includes/functions.php';
do_config();
require_once "includes/$user_inc";
require_once 'includes/access.php';
require_once 'includes/gradient.php';
require_once 'includes/validate.php';
load_global_settings();
session_name(getSessionName());
@session_start();
$empTmp = ( ! empty( $_SESSION['webcal_tmp_login'] ) );
// If calling script uses 'guest', we must also.
$GLOBALS['user'] = ! empty( $_GET['login'] )
? $_GET['login']
: ( ! empty( $_REQUEST['login'] )
? $_REQUEST['login']
: ( $empTmp
? $_SESSION['webcal_tmp_login']
: ( empty( $_SESSION['webcal_login'] )
? '__public__'
: $_SESSION['webcal_login'] ) ) );
load_user_preferences( $GLOBALS['user'] );
unset( $_SESSION['webcal_tmp_login'] );
// If we are calling from admin or pref, expire CSS yesterday.
// Otherwise, expire tomorrow.
$expTime = time() + 86400;
if( $empTmp )
$expTime = time() - 86400;
header( 'Content-type: text/css' );
header( 'Cache-Control: Public' );
header( 'Pragma: Public' );
send_no_cache_header();
require_once 'includes/css/styles.php';
?>