13 lines
165 B
PHP
13 lines
165 B
PHP
<?php
|
|
|
|
class page_handler {
|
|
|
|
function handle($input) {
|
|
tracking::$data['readDisclaimer'] = true;
|
|
$this->output = "disclaimer";
|
|
$this->data = false;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|