mirror of
https://github.com/kennethreitz-archive/wp-krtheme.git
synced 2026-06-05 23:40:16 +00:00
13 lines
267 B
PHP
13 lines
267 B
PHP
<?php
|
|
ob_start('ob_gzhandler');
|
|
header('Content-Type: text/css');
|
|
$files = split(",",$_GET['files']);
|
|
foreach($files as $key=>$val){
|
|
if(file_exists($val.'.css')){
|
|
include_once($val.'.css');
|
|
}else{
|
|
echo "\n\n/*** File \"$val\" does not exist. ***/\n\n";
|
|
}
|
|
}
|
|
?>
|