BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

search.php 421B

1234567891011121314151617181920212223
  1. <?php
  2. #declare(strict_types=1);
  3. /*
  4. * todo: I'm not writing documentation for this page until I write this page >.>
  5. */
  6. if (!check_perms('admin_reports')) {
  7. error(403);
  8. }
  9. View::show_header('Reports V2!', 'reportsv2');
  10. ?>
  11. <div class="header">
  12. <h2>Search</h2>
  13. <?php include('header.php'); ?>
  14. </div>
  15. <div class="box pad">
  16. On hold until someone fixes the main torrents search.
  17. </div>
  18. <?php
  19. View::show_footer();