This commit is contained in:
olivia
2007-07-13 12:05:29 +00:00
parent 59fa5cf1f7
commit c3d7928704
144 changed files with 6503 additions and 5052 deletions
+6 -1
View File
@@ -1,16 +1,21 @@
<?php
header("Cache-Control: no-cache");
header("Cache-Control: post-check=0, pre-check=0",false);
header("Expires Mon, 26 Jul 1997 05:00:00 GMT");
header("Pragma: no-cache");
if (isset($_GET['path']))
$path=$_GET['path'];
else
$path='../';
require ($path.'cis/config.inc.php');
setcookie('stylesheet', DEFAULT_STYLE);
//setcookie('stylesheet', DEFAULT_STYLE);
if (isset($_COOKIE['stylesheet']))
$stylesheet=$_COOKIE['stylesheet'];
else
$stylesheet=DEFAULT_STYLE;
//setcookie('stylesheet', DEFAULT_STYLE);
header("Content-Type: text/css");
//echo $_COOKIE['stylesheet'];
readfile ($path.'skin/styles/'.$stylesheet.'.css');
?>