home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
groupoffice-com-2.01
/
modules
/
wiki
/
action
/
style.php
< prev
next >
Wrap
PHP Script
|
2004-03-08
|
328b
|
19 lines
<?php
// $Id: style.php,v 1.1 2004/01/12 22:14:04 comsubvie Exp $
// This function emits the current template's stylesheet.
function action_style()
{
header("Content-type: text/css");
ob_start();
require(TemplateDir . '/wiki.css');
$size = ob_get_length();
header("Content-Length: $size");
ob_end_flush();
}
?>