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.

index.php 357B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. enforce_login();
  4. if (!check_perms('site_upload')) {
  5. error(403);
  6. }
  7. if ($LoggedUser['DisableUpload']) {
  8. error('Your upload privileges have been revoked.');
  9. }
  10. // Build the page
  11. if (!empty($_POST['submit'])) {
  12. require_once 'upload_handle.php';
  13. } else {
  14. require_once SERVER_ROOT.'/sections/upload/upload.php';
  15. }