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