1
0
mirror of https://github.com/php/web-php.git synced 2026-04-01 12:12:16 +02:00
Files
archived-web-php/user/css.php
2003-05-13 17:14:07 +00:00

18 lines
454 B
PHP

<?php
/* $Id$ */
include_once "prepend.inc";
// The output of this page should not be cached by public proxies
header("Cache-Control: private, max-age=86400, min-age=43200");
header("Pragma: no-cache");
// Proper content-type header
header("Content-type: text/css");
// If we have a valid country, output a CSS rule
// marking the events in the user's country specially
if (i2c_valid_country()) {
echo ".event_$COUNTRY { font-weight: bold; }";
}