15 lines
289 B
PHP
15 lines
289 B
PHP
<?php
|
|
|
|
// Is there any input?
|
|
if ( array_key_exists( "default", $_GET ) && !is_null ($_GET[ 'default' ]) ) {
|
|
$default = $_GET['default'];
|
|
|
|
# Do not allow script tags
|
|
if (stripos ($default, "<script") !== false) {
|
|
header ("location: ?default=English");
|
|
exit;
|
|
}
|
|
}
|
|
|
|
?>
|