6 lines
207 B
PHP
6 lines
207 B
PHP
<?php
|
|
// Historical logs are private. The authenticated application renders only the
|
|
// current user's entitled archive through api/archive.php.
|
|
header('Location: index.html?view=archive', true, 302);
|
|
exit;
|