mirror of
https://github.com/kennethreitz-archive/wp-krtheme.git
synced 2026-06-05 23:40:16 +00:00
Moved old theme to /bak/ for easy backup.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?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";
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user