mirror of
https://github.com/php/web-php.git
synced 2026-04-01 04:02:10 +02:00
14 lines
297 B
PHP
14 lines
297 B
PHP
<?php
|
|
/* $Id$ */
|
|
|
|
include_once "prepend.inc";
|
|
|
|
// The output of this page should not be cached
|
|
header_nocache();
|
|
|
|
// 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; }";
|
|
}
|