mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
22 lines
385 B
PHP
22 lines
385 B
PHP
<?
|
|
/*
|
|
* TODO: I'm not writing documentation for this page until I write this page >.>
|
|
*/
|
|
if (!check_perms('admin_reports')) {
|
|
error(403);
|
|
}
|
|
|
|
View::show_header('Reports V2!', 'reportsv2');
|
|
|
|
?>
|
|
<div class="header">
|
|
<h2>Search</h2>
|
|
<? include('header.php'); ?>
|
|
</div>
|
|
<div class="thin box pad">
|
|
On hold until someone fixes the main torrents search.
|
|
</div>
|
|
<?
|
|
View::show_footer();
|
|
?>
|