mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 05:39:28 +00:00
16 lines
373 B
PHP
16 lines
373 B
PHP
<?php
|
|
if (isset($_GET['path']))
|
|
$path=$_GET['path'];
|
|
else
|
|
$path='../';
|
|
require ($path.'cis/config.inc.php');
|
|
setcookie('stylesheet', DEFAULT_STYLE);
|
|
if (isset($_COOKIE['stylesheet']))
|
|
$stylesheet=$_COOKIE['stylesheet'];
|
|
else
|
|
$stylesheet=DEFAULT_STYLE;
|
|
header("Content-Type: text/css");
|
|
readfile ($path.'skin/styles/'.$stylesheet.'.css');
|
|
?>
|
|
|